Replicated code from Jenny Trickey’s repo here
Summaries generated: 2025 Jun 02 14:19 UTC
Load needed libraries.
# load all libraries
devtools::install_github('taikisan21/PAMpal')
library(PAMpal)
# library(kableExtra) # known bug with R ver 4.3.0 so install from github
devtools::install_github('kupietz/kableExtra')
library(kableExtra)
library(ggplot2)
library(RSQLite)
library(tuneR)
# library(wesanderson)
library(here)
library(DBI)
# I don't think we need these but saving here in case
library(dplyr)
# library(tcltk)
# library(manipulate)
Set user-defined variables.
# name project
# ProjID <- 'MHI UxS Glider Project'
# combine trip, recorder, pg version (all defined in YAML) to single run string
# dbFileStr <- paste0(params$mission, '_', params$drift, '_Kogia_', params$pgver)
# define subfolder paths based on selected analysis folder and trip strings
# path_to_db <- file.path(params$path_pg, 'Database')
# path_to_binaries <- file.path(params$path_pg, 'Binaries', params$drift)
path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main binaries folder")
# assemble some file names
# pamguard database
# dbFile <- file.path(path_to_db, paste0(dbFileStr, '.sqlite3'))
dbFile <- file.choose()
# dbFile <- choose.files(default = "", caption = "Select database file", multi = FALSE)
# already processed acoustic study 'dets' file
detsFile <- file.path(params$path_dets, paste0(params$mission, '_', params$drift,'/', params$mission, '_2024_', params$drift, '_Filtered.rdata'))
detsFiltFile <- file.path(params$path_dets,
paste0(params$mission, '_', params$drift,'/', params$mission, '_2024_', params$drift, '_', params$channelStr, '.rdata'))
# specify calibration file
# calFile <- params$calFile # pull from YAML
# set path to reference spectra if will be used
path_to_refSpec <- file.path(params$path_to_refSpec) # pull from YAML
# specify which reference spectra to plot
# refSpecList = c('Gm', 'Pc')
refSpecList <- params$refSpecList # pull from YAML
refSpecSp <- params$refSpecSp
# ALTERNATIVE SELECT PATHS
# path_pg <- choose.dir(default = "", caption = "Select path to pamguard folder that contains databases and binaries folders")
# # select path to database files
# path_to_db <- choose.dir(default = "", caption = "Select path to folder with all database files")
# # select path to specific binary drift file
# path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main folder")
# # set up datebase driver
# sqlite <- dbDriver("SQLite") # outdated/no longer supported
# connect to SQLite database using the newer method
con <- dbConnect(RSQLite::SQLite(), dbname = dbFile)
#Set time zone to UTC
Sys.setenv(TZ = 'UTC')
# reference spectra colors - allows for up to 6 ref specs
# pastel
# rsPalette <- c('#66c2a5', '#fc8d62', '#8da0cb', '#e78ac3',
# '#a6d854', '#ffd92f')
# bold
rsPalette <- c('#1b9e77', '#d95f02', '#7570b3', '#e7298a',
'#66a61e', '#e6ab02')
Source some external functions
source(here::here('_code/functions', 'loadMultiBinaries.R'))
source(here::here('_code/functions', 'plotContours.R'))
source(here::here('_code/functions', 'clickSummary.R'))
source(here::here('_code/functions', 'whistleSummary.R'))
# if not using Rproj/here package use:
# source(file.path(params$path_code, 'R', 'functions', 'loadMultiBinaries.R'))
If already created, load an existing dets PAMpal
AcousticStudy object for event processing. We need to load both the
unfiltered dets and filtered detsFilt
AcousticStudies.
# load existing dets AcousticStudy (created with
# workflow_generate_acousticStudies.R)
# load(detFile)
if (file.exists(detsFile)){
dets <- readRDS(detsFile)
cat('Loaded', detsFile, '\n')
} else {
cat('No AcousticStudy \'dets\' file available', '\n')
}
## Loaded Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_004/CalCurCEAS_2024_004_Filtered.rdata
if (file.exists(detsFiltFile)){
detsFilt <- readRDS(detsFiltFile)
cat('Loaded', detsFiltFile, '\n')
} else {
cat('No AcousticStudy \'detsFilt\' file available', '\n')
}
## Loaded Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_004/CalCurCEAS_2024_004_ch1.rdata
# summarize how many events
nEvents <- length(names(PAMpal::events(dets)))
# number of events may change after filtering (all clicks may be filtered out)
nEventsFilt <- length(names(PAMpal::events(detsFilt)))
Loaded Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_004/CalCurCEAS_2024_004_Filtered.rdata and Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_004/CalCurCEAS_2024_004_ch1.rdata
## Updated the locations of 1 out of 1 missing database files.
## Updated the locations of 7253 out of 7253 missing binary files.
## Updating files in events...
## | | | 0% | |= | 0% | |= | 1% | |== | 1% | |== | 2% | |=== | 2% | |=== | 3% | |==== | 3% | |==== | 4% | |===== | 4% | |====== | 5% | |======= | 5% | |======= | 6% | |======== | 6% | |======== | 7% | |========= | 7% | |========= | 8% | |========== | 8% | |========== | 9% | |=========== | 9% | |============ | 9% | |============ | 10% | |============= | 10% | |============= | 11% | |============== | 11% | |============== | 12% | |=============== | 12% | |=============== | 13% | |================ | 13% | |================= | 14% | |================== | 14% | |================== | 15% | |=================== | 15% | |=================== | 16% | |==================== | 16% | |==================== | 17% | |===================== | 17% | |===================== | 18% | |====================== | 18% | |======================= | 18% | |======================= | 19% | |======================== | 19% | |======================== | 20% | |========================= | 20% | |========================= | 21% | |========================== | 21% | |========================== | 22% | |=========================== | 22% | |=========================== | 23% | |============================ | 23% | |============================= | 23% | |============================= | 24% | |============================== | 24% | |============================== | 25% | |=============================== | 25% | |=============================== | 26% | |================================ | 26% | |================================ | 27% | |================================= | 27% | |================================== | 28% | |=================================== | 28% | |=================================== | 29% | |==================================== | 29% | |==================================== | 30% | |===================================== | 30% | |===================================== | 31% | |====================================== | 31% | |====================================== | 32% | |======================================= | 32% | |======================================== | 32% | |======================================== | 33% | |========================================= | 33% | |========================================= | 34% | |========================================== | 34% | |========================================== | 35% | |=========================================== | 35% | |=========================================== | 36% | |============================================ | 36% | |============================================= | 36% | |============================================= | 37% | |============================================== | 37% | |============================================== | 38% | |=============================================== | 38% | |=============================================== | 39% | |================================================ | 39% | |================================================ | 40% | |================================================= | 40% | |================================================= | 41% | |================================================== | 41% | |=================================================== | 41% | |=================================================== | 42% | |==================================================== | 42% | |==================================================== | 43% | |===================================================== | 43% | |===================================================== | 44% | |====================================================== | 44% | |====================================================== | 45% | |======================================================= | 45% | |======================================================== | 46% | |========================================================= | 46% | |========================================================= | 47% | |========================================================== | 47% | |========================================================== | 48% | |=========================================================== | 48% | |=========================================================== | 49% | |============================================================ | 49% | |============================================================ | 50% | |============================================================= | 50% | |============================================================== | 50% | |============================================================== | 51% | |=============================================================== | 51% | |=============================================================== | 52% | |================================================================ | 52% | |================================================================ | 53% | |================================================================= | 53% | |================================================================= | 54% | |================================================================== | 54% | |=================================================================== | 55% | |==================================================================== | 55% | |==================================================================== | 56% | |===================================================================== | 56% | |===================================================================== | 57% | |====================================================================== | 57% | |====================================================================== | 58% | |======================================================================= | 58% | |======================================================================= | 59% | |======================================================================== | 59% | |========================================================================= | 59% | |========================================================================= | 60% | |========================================================================== | 60% | |========================================================================== | 61% | |=========================================================================== | 61% | |=========================================================================== | 62% | |============================================================================ | 62% | |============================================================================ | 63% | |============================================================================= | 63% | |============================================================================= | 64% | |============================================================================== | 64% | |=============================================================================== | 64% | |=============================================================================== | 65% | |================================================================================ | 65% | |================================================================================ | 66% | |================================================================================= | 66% | |================================================================================= | 67% | |================================================================================== | 67% | |================================================================================== | 68% | |=================================================================================== | 68% | |==================================================================================== | 68% | |==================================================================================== | 69% | |===================================================================================== | 69% | |===================================================================================== | 70% | |====================================================================================== | 70% | |====================================================================================== | 71% | |======================================================================================= | 71% | |======================================================================================= | 72% | |======================================================================================== | 72% | |========================================================================================= | 73% | |========================================================================================== | 73% | |========================================================================================== | 74% | |=========================================================================================== | 74% | |=========================================================================================== | 75% | |============================================================================================ | 75% | |============================================================================================ | 76% | |============================================================================================= | 76% | |============================================================================================= | 77% | |============================================================================================== | 77% | |=============================================================================================== | 77% | |=============================================================================================== | 78% | |================================================================================================ | 78% | |================================================================================================ | 79% | |================================================================================================= | 79% | |================================================================================================= | 80% | |================================================================================================== | 80% | |================================================================================================== | 81% | |=================================================================================================== | 81% | |=================================================================================================== | 82% | |==================================================================================================== | 82% | |===================================================================================================== | 82% | |===================================================================================================== | 83% | |====================================================================================================== | 83% | |====================================================================================================== | 84% | |======================================================================================================= | 84% | |======================================================================================================= | 85% | |======================================================================================================== | 85% | |======================================================================================================== | 86% | |========================================================================================================= | 86% | |========================================================================================================== | 87% | |=========================================================================================================== | 87% | |=========================================================================================================== | 88% | |============================================================================================================ | 88% | |============================================================================================================ | 89% | |============================================================================================================= | 89% | |============================================================================================================= | 90% | |============================================================================================================== | 90% | |============================================================================================================== | 91% | |=============================================================================================================== | 91% | |================================================================================================================ | 91% | |================================================================================================================ | 92% | |================================================================================================================= | 92% | |================================================================================================================= | 93% | |================================================================================================================== | 93% | |================================================================================================================== | 94% | |=================================================================================================================== | 94% | |=================================================================================================================== | 95% | |==================================================================================================================== | 95% | |===================================================================================================================== | 96% | |====================================================================================================================== | 96% | |====================================================================================================================== | 97% | |======================================================================================================================= | 97% | |======================================================================================================================= | 98% | |======================================================================================================================== | 98% | |======================================================================================================================== | 99% | |========================================================================================================================= | 99% | |========================================================================================================================= | 100% | |==========================================================================================================================| 100%
## Updated the locations of 1 out of 1 missing database files.
## Updated the locations of 7253 out of 7253 missing binary files.
## Updating files in events...
## | | | 0% | |= | 0% | |= | 1% | |== | 1% | |== | 2% | |=== | 2% | |=== | 3% | |==== | 3% | |==== | 4% | |===== | 4% | |====== | 5% | |======= | 5% | |======= | 6% | |======== | 6% | |======== | 7% | |========= | 7% | |========= | 8% | |========== | 8% | |========== | 9% | |=========== | 9% | |============ | 9% | |============ | 10% | |============= | 10% | |============= | 11% | |============== | 11% | |============== | 12% | |=============== | 12% | |=============== | 13% | |================ | 13% | |================= | 14% | |================== | 14% | |================== | 15% | |=================== | 15% | |=================== | 16% | |==================== | 16% | |==================== | 17% | |===================== | 17% | |===================== | 18% | |====================== | 18% | |======================= | 18% | |======================= | 19% | |======================== | 19% | |======================== | 20% | |========================= | 20% | |========================= | 21% | |========================== | 21% | |========================== | 22% | |=========================== | 22% | |=========================== | 23% | |============================ | 23% | |============================= | 23% | |============================= | 24% | |============================== | 24% | |============================== | 25% | |=============================== | 25% | |=============================== | 26% | |================================ | 26% | |================================ | 27% | |================================= | 27% | |================================== | 28% | |=================================== | 28% | |=================================== | 29% | |==================================== | 29% | |==================================== | 30% | |===================================== | 30% | |===================================== | 31% | |====================================== | 31% | |====================================== | 32% | |======================================= | 32% | |======================================== | 32% | |======================================== | 33% | |========================================= | 33% | |========================================= | 34% | |========================================== | 34% | |========================================== | 35% | |=========================================== | 35% | |=========================================== | 36% | |============================================ | 36% | |============================================= | 36% | |============================================= | 37% | |============================================== | 37% | |============================================== | 38% | |=============================================== | 38% | |=============================================== | 39% | |================================================ | 39% | |================================================ | 40% | |================================================= | 40% | |================================================= | 41% | |================================================== | 41% | |=================================================== | 41% | |=================================================== | 42% | |==================================================== | 42% | |==================================================== | 43% | |===================================================== | 43% | |===================================================== | 44% | |====================================================== | 44% | |====================================================== | 45% | |======================================================= | 45% | |======================================================== | 46% | |========================================================= | 46% | |========================================================= | 47% | |========================================================== | 47% | |========================================================== | 48% | |=========================================================== | 48% | |=========================================================== | 49% | |============================================================ | 49% | |============================================================ | 50% | |============================================================= | 50% | |============================================================== | 50% | |============================================================== | 51% | |=============================================================== | 51% | |=============================================================== | 52% | |================================================================ | 52% | |================================================================ | 53% | |================================================================= | 53% | |================================================================= | 54% | |================================================================== | 54% | |=================================================================== | 55% | |==================================================================== | 55% | |==================================================================== | 56% | |===================================================================== | 56% | |===================================================================== | 57% | |====================================================================== | 57% | |====================================================================== | 58% | |======================================================================= | 58% | |======================================================================= | 59% | |======================================================================== | 59% | |========================================================================= | 59% | |========================================================================= | 60% | |========================================================================== | 60% | |========================================================================== | 61% | |=========================================================================== | 61% | |=========================================================================== | 62% | |============================================================================ | 62% | |============================================================================ | 63% | |============================================================================= | 63% | |============================================================================= | 64% | |============================================================================== | 64% | |=============================================================================== | 64% | |=============================================================================== | 65% | |================================================================================ | 65% | |================================================================================ | 66% | |================================================================================= | 66% | |================================================================================= | 67% | |================================================================================== | 67% | |================================================================================== | 68% | |=================================================================================== | 68% | |==================================================================================== | 68% | |==================================================================================== | 69% | |===================================================================================== | 69% | |===================================================================================== | 70% | |====================================================================================== | 70% | |====================================================================================== | 71% | |======================================================================================= | 71% | |======================================================================================= | 72% | |======================================================================================== | 72% | |========================================================================================= | 73% | |========================================================================================== | 73% | |========================================================================================== | 74% | |=========================================================================================== | 74% | |=========================================================================================== | 75% | |============================================================================================ | 75% | |============================================================================================ | 76% | |============================================================================================= | 76% | |============================================================================================= | 77% | |============================================================================================== | 77% | |=============================================================================================== | 77% | |=============================================================================================== | 78% | |================================================================================================ | 78% | |================================================================================================ | 79% | |================================================================================================= | 79% | |================================================================================================= | 80% | |================================================================================================== | 80% | |================================================================================================== | 81% | |=================================================================================================== | 81% | |=================================================================================================== | 82% | |==================================================================================================== | 82% | |===================================================================================================== | 82% | |===================================================================================================== | 83% | |====================================================================================================== | 83% | |====================================================================================================== | 84% | |======================================================================================================= | 84% | |======================================================================================================= | 85% | |======================================================================================================== | 85% | |======================================================================================================== | 86% | |========================================================================================================= | 86% | |========================================================================================================== | 87% | |=========================================================================================================== | 87% | |=========================================================================================================== | 88% | |============================================================================================================ | 88% | |============================================================================================================ | 89% | |============================================================================================================= | 89% | |============================================================================================================= | 90% | |============================================================================================================== | 90% | |============================================================================================================== | 91% | |=============================================================================================================== | 91% | |================================================================================================================ | 91% | |================================================================================================================ | 92% | |================================================================================================================= | 92% | |================================================================================================================= | 93% | |================================================================================================================== | 93% | |================================================================================================================== | 94% | |=================================================================================================================== | 94% | |=================================================================================================================== | 95% | |==================================================================================================================== | 95% | |===================================================================================================================== | 96% | |====================================================================================================================== | 96% | |====================================================================================================================== | 97% | |======================================================================================================================= | 97% | |======================================================================================================================= | 98% | |======================================================================================================================== | 98% | |======================================================================================================================== | 99% | |========================================================================================================================= | 99% | |========================================================================================================================= | 100% | |==========================================================================================================================| 100%
Updated file paths to binaries in databases for Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_004/CalCurCEAS_2024_004_Filtered.rdata and Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_004/CalCurCEAS_2024_004_ch1.rdata
To be used for manual scoring based on report figures.
# set up output data frame
evTable <- data.frame(drift = character(nEvents), id = character(nEvents),
species = character(nEvents), numClicks = numeric(nEvents))
# populate with drift string and event names
evTable$drift <- paste0(params$mission, '_', params$drift)
evTable$id <- names(PAMpal::events(detsFilt))
# get all click data
allClks <- PAMpal::getClickData(detsFilt)
# get the number of clicks for each event
for (iEvent in c(1:nEventsFilt)){
evTable$numClicks[iEvent] <- length(which(allClks$eventId == evTable$id[iEvent]))
}
# keep only rows/events with at least 200 clicks
evTable <- evTable[which(evTable$numClicks >199),]
# add column for keeping/removing based on median peak frequency
evTable$keep <- FALSE # set all to false, will mark keepers as TRUE in loop
# save event table as CSV
write.csv(evTable, file = file.path(params$path_dets,
paste0('eventTable_', params$mission, '_',
params$drift, '_', Sys.Date(),'.csv')))
1669 events (files) in drift. 728 events have at least 200 clicks. Additional events may be removed if the median peak frequency of all high SNR clicks is less than 6 kHz. The final number of events can be found at the very end of the report.
Load the reference spectra for plotting, if set with
refSpecList.
# refSpecList is specified in YAML params. Can be one or multiple species
# for single species specify as char string without quotations e.g., refSpecPc
# for multiple species, specify with call to R and c()
# e.g., !r c('meanSpecGm', 'refSpecPc_LLHARP')
refSpecs <- NULL
if (!is.null(refSpecList)){
refSpecs = list()
for (rs in refSpecList){
refSpecs[[rs]] = read.csv(file.path(path_to_refSpec, paste0(rs, '.csv')))
}
}
Loop through each detection event (n = 728) create plots and a table of summary statistics for click and whistle detections. This process uses AcousticStudy objects that have detection data for each event, and also pulls information from the Pamguard binaries associated with each AcousticStudy.
Click plots (other than the SNR plot) only show clicks with SNRs >= 15 dB.
for (iEvent in c(1:nEventsFilt)){
# iEvent = 6 # for testing
# ("pagebreak \n")
# extract this event UID string
eventList <- PAMpal::events(detsFilt)
eventUID <- names(eventList)[iEvent]
###### summarize clicks ######
cl <- clickSummary(detsFilt, eventUID)
if ((cl$nClicks > 199) && median(cl$goodClicks$peak, na.rm = TRUE) >= 6){
# keep this in evTable
evTable$keep[evTable$id == eventUID] <- TRUE
evTable$medPeakFrq[evTable$id == eventUID] <- median(cl$goodClicks$peak,
na.rm = TRUE)
# set header for this event and print time
cat('\n\n#### Event ID: ', names(eventList)[iEvent], '\n')
cat('Time: ', format(eventList[[eventUID]]@ancillary$grouping$start,
'%Y-%m-%d %H:%M%Z'), ' to ',
format(eventList[[eventUID]]@ancillary$grouping$end, '%Y-%m-%d %H:%M%Z'),
'\n')
cat('\nEvent contains', nrow(PAMpal::getClickData(dets[[eventUID]])),
'original clicks,', paste0('**', cl$nClicks), 'valid clicks** after',
'filtering.\n')
cat('\n')
###### summarize whistles ######
# wl <- whistleSummary(detsFilt, eventUID)
#
# cat('\nEvent contains', paste0('**', wl$nWhistles), 'whistles**.\n')
# cat('\n')
###### click plots and table ######
cat('\n##### Click plots and table\n')
cat('\n SNR histogram includes all filtered clicks. Other plots contain only',
'clicks with SNR >= 15 dB', paste0('(**n = ', cl$nGoodClicks, ' clicks**)'),
'.\n')
cat('\n')
# if any clicks...
if (cl$nClicks > 0){
# histogram of all clicks and SNR >= 15 dB cut off
xMax <- max(c(15, ceiling(max(cl$snr)) + 2)) # whichever is bigger
if (any(!is.na(cl$snr))){
hist(cl$snr, breaks = seq(from = floor(min(cl$snr)),
to = xMax, by = 2),
main = 'Click SNR', sub = '(all filtered clicks)', xlab = 'SNR')
abline(v = 15, lty = 2, lwd = 2, col = 'red4')
}
}
# if sufficient good clicks...
if (cl$nGoodClicks > 0) {
# histogram of click durations - good clicks only
subStr <- paste0('(high SNR clicks, n=', cl$nGoodClicks, ')')
hist(cl$goodClicks$duration,
breaks = seq(from = 0, to = max(cl$goodClicks$duration) + 100,
by = 100), main = 'Click duration', sub = subStr,
xlab = expression(paste('duration [', mu, 's]')))
abline(v = median(cl$goodClicks$duration), lty = 2, lwd = 2, col = 'black')
legend('topright', legend = 'median', lty = 2, lwd = 2, col = 'black')
cat('\n')
cat('\n')
# Calculate and plot Concatenated and Mean Spectrum for clicks w/ max SNR > 15dB
# NB: JLKM uses more exaggerated SNR (>40 dB) for BWs bc actual spectra may
# be noisy for single clicks
# reducing wl can give more accurate noise floor but 'smoother' spectrum
# increasing wl will give more exact spectrum but may exclude too many
# clicks based on SNR (noise measure will overlap with click output; noise
# is just measured as same wl from start of binary snippet and binaries
# binary snippets are v short)
# Trial and error - 256 works ok for LLHARP data = 1.28 ms
# NB: JLKM uses 500 for beaked whales with samp rate 288k
avgSpec <- PAMpal::calculateAverageSpectra(detsFilt, evNum = eventUID, wl = 256,
channel = params$channelNum, norm = TRUE,
noise = TRUE, sort = TRUE, snr = 15,
plot = c(TRUE, FALSE))
# concatenated spectrogram will get plotted within calculation
# avg spectrum plots separately (bc adding stuff)
if (!is.null(avgSpec)) {
# Peak freq as calculated by calculateAvgerageSpectra -for subtitle
peakFreq <- round(avgSpec$freq[which.max(avgSpec$avgSpec)]/1000, 2)
plot(1, type = 'n', xlim = c(0, 100), ylim = c(min(avgSpec$avgSpec), 0),
xlab = 'Frequency (kHz)', ylab = 'Normalized Magnitude (dB)',
main = 'Average Spectrum', sub = paste0('Peak: ', peakFreq, 'kHz'))
# add grid lines for frequency at 10 kHz intervals
for (iline in ((0:20)*10)) {lines(c(iline,iline), c(-100,10), col="gray")}
# add template spectra
if (length(refSpecs) > 0){
rsCols <- rsPalette[1:length(refSpecs)]
for (rs in 1:length(refSpecs)){
rsTmp <- refSpecList[rs]
rsNorm <- refSpecs[[rsTmp]]
rsMax <- max(rsNorm$dB)
rsNorm$dBNorm <- rsNorm$dB - rsMax
lines(rsNorm$frq, rsNorm$dBNorm, col = rsCols[rs], lwd = 2)
}
}
# plot noise
lines(avgSpec$freq/1000, avgSpec$avgNoise, lty = 3, lwd = 2)
# plot avg spectrum
lines(avgSpec$freq/1000, avgSpec$avgSpec, lty = 2, lwd = 3)
# also plot median spectrum
medSpec <- 20*log10(apply(avgSpec$allSpec, 1, function(y) {
median(10^(y/20), na.rm = TRUE)}))
medSpecNorm <- medSpec - max(medSpec, na.rm = TRUE)
lines(avgSpec$freq/1000, medSpecNorm, lty = 1, lwd = 3)
# add legend
if (length(refSpecs) > 0){
legend(x = 'topright', c(refSpecSp, 'Avg.', 'Med.', 'Noise'),
lty = c(rep(1, length(refSpecs)), 2, 1, 3),
lwd = c(rep(1, length(refSpecs)), 2, 3, 2),
col = c(rsCols, 'black', 'black', 'black'), cex = 0.8)
} else if (length(refSpecs) == 0){
legend(x = 'topright', c('Avg.', 'Med.', 'Noise'),
lty = c(2, 1, 3), lwd = c(2, 3, 2),
col = c('black', 'black', 'black'), cex = 0.8)
}
}
# NB: JLKM BW approach has additional plots here:
# IPI
# Waveform of strongest click
# Wigner plot
# We are not including those here because not really useful for FKW, but if
# interested in adding back in, see:
# https://github.com/jlkeating/PAMGuard_Event_Code
cat('\n')
cat('\n')
# create median stats table for clicks with -15 dB TK noise cut off
cat('\n\n Median statistics for', cl$nGoodClicks, 'high SNR clicks with',
'SNR >= 15 dB.')
cat('\n')
cat(knitr::kable(cl$mt, format = 'html', caption = '', align = 'l',
row.names = FALSE) %>%
kableExtra::kable_styling(bootstrap_options = c('basic', 'condensed'),
full_width = F))
} else { # no good clicks so no summary plots/table
cat('\nNo clicks of sufficient SNR to plot or summarize.\n')
}
###### whistle plots and table ######
#
# cat('\n##### Whistle plots and table\n')
#
# # if whistles present ...
# if (wl$nWhistles > 0) {
# # create median stats table for all whistles
# # cat('\n\n Median statistics for', wl$nWhistles, 'whistles.')
# # cat('\n')
#
# # plot whistle contours
# # map the needed binary files
# binFiles <- dets@events[[eventUID]]@files$binaries
# wmFileIdx <- grep(pattern = '^.*WhistlesMoans_Whistle_and_Moan.*\\.pgdf$',
# binFiles)
# wmFiles <- dets@events[[eventUID]]@files$binaries[wmFileIdx]
#
# # load them
# whBin <- loadMultiBinaries(wmFiles)
# # trim to just the event time
# whBinEv <- whBin[names(whBin) %in%
# detsFilt[[eventUID]]$Whistle_and_Moan_Detector$UID]
#
# # #plot - ggplot version/functionized
# # pc <- plotContours(whBinEv)
# # # print(pc)
# # pc + ggtitle(eventUID)
# #
#
# # get plot limits
# # xMax <- 0
# # yMax <- 0
# # for (wc in 1:length(names(whBinEv))){
# # df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
# # freq = whBinEv[[wc]]$freq/1000)
# # xMaxTmp <- max(df$time)
# # yMaxTmp <- max(df$freq)
# # if (xMaxTmp > xMax){xMax <- xMaxTmp}
# # if (yMaxTmp > yMax){yMax <- yMaxTmp}
# # }
# # or use standard max lims
# xMax <- 1.5
# yMax <- 20
#
# # plot each line
# plot(1, type = 'n', xlim = c(0, round(xMax,2)), ylim = c(0, round(yMax,-1)),
# xlab = 'Time (s)', ylab = 'Frequency (kHz)',
# main = 'Whistle Contours')
# # add grid lines for frequency at 0.125 s and 5 kHz intervals
# for (iline in (seq(0,2,0.125))) {lines(c(iline,iline), c(-10,60),
# col="lightgray")}
# for (iline in (seq(0,50,5))) {lines(c(-0.5,2.5), c(iline,iline),
# col="lightgray")}
# # loop through each contour
# for (wc in 1:length(names(whBinEv))){
# df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
# freq = whBinEv[[wc]]$freq/1000)
# lines(df$time, df$freq, col = rgb(0,0,0,0.4))
# }
#
# # plot histogram of median frequency
# hist(wl$wh$freqMedian/1000,
# breaks = seq(0, ceiling(max(wl$wh$freqMedian/1000)) + 1, 1),
# main = 'Histogram of whistle median frequency',
# xlab = 'Median frequency (kHz)')
#
# cat('\n')
# cat('\n')
#
# cat('Median statistics for n = ', wl$nWhistles, 'whistles.\n')
# # create median stats table for all whistles
# cat(knitr::kable(wl$mt, format = 'html', caption = '', align = 'l',
# row.names = FALSE) %>%
# kable_styling(bootstrap_options = c('basic', 'condensed'),
# full_width = F))
#
# } else {
# cat('\nNo whistles present.\n')
# }
cat('\n')
cat('\n\n --- \n\n')
cat('\n')
}# num clicks/peak freq check
} # loop
Time: 2024-08-21 03:58UTC to 2024-08-21 04:04UTC
Event contains 822 original clicks, 411 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 153 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.09 |
| Median 10dB Center Frequency [kHz] | 6.43 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (5.32 - 6.62) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.13 (4.05 - 8.74) |
| Median duration [μs] (25-75 percentile) | 18 (3 - 42) |
Time: 2024-08-21 10:22UTC to 2024-08-21 10:28UTC
Event contains 978 original clicks, 489 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 237 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.95 |
| Median 10dB Center Frequency [kHz] | 5.91 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.37 - 6.56) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.66 (4.51 - 7.19) |
| Median duration [μs] (25-75 percentile) | 574 (177 - 1204) |
Time: 2024-08-21 10:28UTC to 2024-08-21 10:34UTC
Event contains 968 original clicks, 484 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 188 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.85 |
| Median 10dB Center Frequency [kHz] | 5.84 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.987 (5.32 - 6.43) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.64 (4.41 - 7.18) |
| Median duration [μs] (25-75 percentile) | 417 (151 - 1000) |
Time: 2024-08-21 10:46UTC to 2024-08-21 10:52UTC
Event contains 894 original clicks, 447 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 235 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.89 |
| Median 10dB Center Frequency [kHz] | 5.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.01 (5.32 - 6.49) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.45 (4.55 - 7.16) |
| Median duration [μs] (25-75 percentile) | 574 (214 - 1135) |
Time: 2024-08-21 11:10UTC to 2024-08-21 11:16UTC
Event contains 456 original clicks, 228 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 116 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.11 |
| Median 10dB Center Frequency [kHz] | 5.92 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (5.56 - 6.68) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.58 (4.61 - 7.29) |
| Median duration [μs] (25-75 percentile) | 338 (100 - 1000) |
Time: 2024-08-21 12:28UTC to 2024-08-21 12:34UTC
Event contains 458 original clicks, 229 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 50 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 7.84 |
| Median 10dB Center Frequency [kHz] | 7.37 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.754 (6.34 - 8.92) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.62 (5.68 - 9.18) |
| Median duration [μs] (25-75 percentile) | 220 (100 - 1000) |
Time: 2024-08-21 16:28UTC to 2024-08-21 16:34UTC
Event contains 810 original clicks, 405 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 159 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.2 |
| Median 3dB Center Frequency [kHz] | 8.58 |
| Median 10dB Center Frequency [kHz] | 8.83 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 (7.99 - 9.45) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.01 (6.11 - 11.5) |
| Median duration [μs] (25-75 percentile) | 70 (0 - 1000) |
Time: 2024-08-21 16:34UTC to 2024-08-21 16:40UTC
Event contains 568 original clicks, 284 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 68 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10.8 |
| Median 3dB Center Frequency [kHz] | 10.7 |
| Median 10dB Center Frequency [kHz] | 10.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.912 (9.96 - 10.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.31 (9.26 - 12.7) |
| Median duration [μs] (25-75 percentile) | 94 (23 - 1000) |
Time: 2024-08-22 04:46UTC to 2024-08-22 04:52UTC
Event contains 408 original clicks, 204 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 142 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.53 |
| Median 10dB Center Frequency [kHz] | 6.39 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (5.96 - 7.04) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.31 (4.99 - 8.4) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-22 04:52UTC to 2024-08-22 04:58UTC
Event contains 774 original clicks, 387 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 210 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.95 |
| Median 10dB Center Frequency [kHz] | 6.08 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.09 (5.35 - 6.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.15 ( 4.3 - 7.84) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-22 04:58UTC to 2024-08-22 05:04UTC
Event contains 736 original clicks, 368 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 265 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.59 |
| Median 10dB Center Frequency [kHz] | 6.83 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (5.94 - 7.27) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.1 (4.95 - 8.63) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 5) |
Time: 2024-08-22 05:22UTC to 2024-08-22 05:28UTC
Event contains 734 original clicks, 367 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 265 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.46 |
| Median 10dB Center Frequency [kHz] | 6.62 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (5.83 - 7.12) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.2 (4.92 - 8.15) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-22 05:28UTC to 2024-08-22 05:34UTC
Event contains 830 original clicks, 415 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 340 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.04 |
| Median 10dB Center Frequency [kHz] | 6.05 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.57 - 6.62) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.36 (4.18 - 7.77) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 13) |
Time: 2024-08-22 05:34UTC to 2024-08-22 05:40UTC
Event contains 988 original clicks, 494 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 429 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.35 |
| Median 10dB Center Frequency [kHz] | 6.44 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (5.54 - 7.17) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.41 (3.61 - 8.77) |
| Median duration [μs] (25-75 percentile) | 63 (0 - 386) |
Time: 2024-08-22 05:40UTC to 2024-08-22 05:46UTC
Event contains 700 original clicks, 350 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 296 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.76 |
| Median 10dB Center Frequency [kHz] | 7.01 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.42 (5.97 - 7.71) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.88 (3.79 - 9.92) |
| Median duration [μs] (25-75 percentile) | 30 (0 - 162) |
Time: 2024-08-22 05:52UTC to 2024-08-22 05:58UTC
Event contains 488 original clicks, 244 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 180 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.44 |
| Median 10dB Center Frequency [kHz] | 7.04 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.64 ( 5.7 - 7.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.17 (3.58 - 10.2) |
| Median duration [μs] (25-75 percentile) | 81 (0 - 262) |
Time: 2024-08-22 05:58UTC to 2024-08-22 06:04UTC
Event contains 1672 original clicks, 836 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 768 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.62 |
| Median 10dB Center Frequency [kHz] | 6.77 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.35 (5.87 - 7.33) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.08 (4.34 - 9.03) |
| Median duration [μs] (25-75 percentile) | 386 (0 - 1242) |
Time: 2024-08-22 06:22UTC to 2024-08-22 06:28UTC
Event contains 1052 original clicks, 526 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 407 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.35 |
| Median 10dB Center Frequency [kHz] | 6.55 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (5.82 - 7.05) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.17 (4.93 - 8.31) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-22 06:28UTC to 2024-08-22 06:34UTC
Event contains 1552 original clicks, 776 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 713 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.63 |
| Median 10dB Center Frequency [kHz] | 6.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.44 (5.62 - 7.65) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.07 (3.98 - 9.26) |
| Median duration [μs] (25-75 percentile) | 172 (0 - 425) |
Time: 2024-08-22 06:34UTC to 2024-08-22 06:40UTC
Event contains 1342 original clicks, 671 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 621 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.94 |
| Median 10dB Center Frequency [kHz] | 6.74 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.45 (6.07 - 7.79) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.42 (4.15 - 9.12) |
| Median duration [μs] (25-75 percentile) | 248 (0 - 1000) |
Time: 2024-08-22 06:40UTC to 2024-08-22 06:46UTC
Event contains 1400 original clicks, 700 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 622 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.61 |
| Median 10dB Center Frequency [kHz] | 6.84 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.52 (5.55 - 7.61) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.8 (3.86 - 9.42) |
| Median duration [μs] (25-75 percentile) | 279 (0 - 1000) |
Time: 2024-08-22 06:46UTC to 2024-08-22 06:52UTC
Event contains 1614 original clicks, 807 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 734 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.99 |
| Median 10dB Center Frequency [kHz] | 7.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.51 (6.05 - 7.87) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.58 (4.28 - 9.52) |
| Median duration [μs] (25-75 percentile) | 280 (0 - 1082) |
Time: 2024-08-22 06:52UTC to 2024-08-22 06:58UTC
Event contains 1780 original clicks, 890 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 798 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.85 |
| Median 10dB Center Frequency [kHz] | 7.77 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.43 (7.05 - 8.67) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.35 (5.03 - 10.1) |
| Median duration [μs] (25-75 percentile) | 302 (0 - 1188) |
Time: 2024-08-22 06:58UTC to 2024-08-22 07:04UTC
Event contains 1300 original clicks, 650 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 526 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.74 |
| Median 10dB Center Frequency [kHz] | 7.77 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (7.07 - 8.49) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.94 (5.25 - 9.97) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 177) |
Time: 2024-08-22 07:16UTC to 2024-08-22 07:22UTC
Event contains 1274 original clicks, 637 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 494 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.87 |
| Median 10dB Center Frequency [kHz] | 6.74 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.01 (6.16 - 7.67) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.23 ( 4.9 - 8.74) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 160) |
Time: 2024-08-22 07:22UTC to 2024-08-22 07:28UTC
Event contains 1428 original clicks, 714 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 617 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.37 |
| Median 10dB Center Frequency [kHz] | 6.53 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.48 (5.17 - 7.45) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.49 (3.79 - 8.96) |
| Median duration [μs] (25-75 percentile) | 328 (23 - 1000) |
Time: 2024-08-22 07:28UTC to 2024-08-22 07:34UTC
Event contains 1194 original clicks, 597 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 525 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.75 |
| Median 10dB Center Frequency [kHz] | 5.94 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.36 (4.95 - 6.64) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.78 (3.84 - 8.01) |
| Median duration [μs] (25-75 percentile) | 308 (31 - 1000) |
Time: 2024-08-22 07:40UTC to 2024-08-22 07:46UTC
Event contains 1182 original clicks, 591 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 474 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.08 |
| Median 10dB Center Frequency [kHz] | 7.28 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.46 (6.24 - 8.06) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.4 ( 4.5 - 9.91) |
| Median duration [μs] (25-75 percentile) | 164 (6 - 1000) |
Time: 2024-08-22 07:46UTC to 2024-08-22 07:52UTC
Event contains 1714 original clicks, 857 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 746 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.14 |
| Median 10dB Center Frequency [kHz] | 6.29 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.46 (5.42 - 6.95) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.03 (4.12 - 8.3) |
| Median duration [μs] (25-75 percentile) | 377 (100 - 1084) |
Time: 2024-08-22 07:52UTC to 2024-08-22 07:58UTC
Event contains 2400 original clicks, 1200 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1023 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.27 |
| Median 10dB Center Frequency [kHz] | 6.41 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 (5.58 - 6.95) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.54 (4.55 - 8.24) |
| Median duration [μs] (25-75 percentile) | 383 (0 - 1199) |
Time: 2024-08-22 07:58UTC to 2024-08-22 08:04UTC
Event contains 778 original clicks, 389 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 307 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.8 |
| Median 10dB Center Frequency [kHz] | 6.77 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 ( 6.1 - 7.48) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.82 (4.27 - 8.96) |
| Median duration [μs] (25-75 percentile) | 16 (0 - 321) |
Time: 2024-08-22 08:16UTC to 2024-08-22 08:22UTC
Event contains 2524 original clicks, 1262 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1045 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.03 |
| Median 10dB Center Frequency [kHz] | 6.01 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.01 (5.47 - 6.65) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.24 (4.09 - 7.83) |
| Median duration [μs] (25-75 percentile) | 21 (0 - 1000) |
Time: 2024-08-22 08:22UTC to 2024-08-22 08:28UTC
Event contains 1744 original clicks, 872 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 761 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.49 |
| Median 10dB Center Frequency [kHz] | 6.75 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.35 (5.57 - 7.28) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.2 (3.94 - 9.13) |
| Median duration [μs] (25-75 percentile) | 399 (5 - 1155) |
Time: 2024-08-22 08:28UTC to 2024-08-22 08:34UTC
Event contains 2196 original clicks, 1098 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 980 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.6 |
| Median 10dB Center Frequency [kHz] | 6.99 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.33 (5.92 - 7.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.18 (4.17 - 9.23) |
| Median duration [μs] (25-75 percentile) | 411 (8 - 1163) |
Time: 2024-08-22 08:34UTC to 2024-08-22 08:40UTC
Event contains 1970 original clicks, 985 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 859 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.17 |
| Median 10dB Center Frequency [kHz] | 7.31 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.33 (6.41 - 7.83) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.27 (4.56 - 9.53) |
| Median duration [μs] (25-75 percentile) | 310 (0 - 1000) |
Time: 2024-08-22 08:40UTC to 2024-08-22 08:46UTC
Event contains 1534 original clicks, 767 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 673 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.67 |
| Median 10dB Center Frequency [kHz] | 7.44 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.41 (6.78 - 8.35) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.17 (4.65 - 10.1) |
| Median duration [μs] (25-75 percentile) | 448 (100 - 1000) |
Time: 2024-08-22 08:46UTC to 2024-08-22 08:52UTC
Event contains 1572 original clicks, 786 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 691 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.33 |
| Median 10dB Center Frequency [kHz] | 7.14 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (6.65 - 8.04) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.32 ( 4.5 - 9.44) |
| Median duration [μs] (25-75 percentile) | 571 (100 - 1190) |
Time: 2024-08-22 08:52UTC to 2024-08-22 08:58UTC
Event contains 2394 original clicks, 1197 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1020 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.22 |
| Median 10dB Center Frequency [kHz] | 7.35 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.44 (6.62 - 8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.71 (4.26 - 9.85) |
| Median duration [μs] (25-75 percentile) | 175 (0 - 1055) |
Time: 2024-08-22 08:58UTC to 2024-08-22 09:04UTC
Event contains 1808 original clicks, 904 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 775 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.41 |
| Median 10dB Center Frequency [kHz] | 8.35 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.4 (7.66 - 9.04) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.52 (5.34 - 10.8) |
| Median duration [μs] (25-75 percentile) | 172 (0 - 1000) |
Time: 2024-08-22 09:04UTC to 2024-08-22 09:10UTC
Event contains 458 original clicks, 229 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 168 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.02 |
| Median 10dB Center Frequency [kHz] | 6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (5.18 - 6.8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.96 (3.85 - 8.26) |
| Median duration [μs] (25-75 percentile) | 51 (0 - 151) |
Time: 2024-08-22 09:16UTC to 2024-08-22 09:22UTC
Event contains 956 original clicks, 478 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 364 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.77 |
| Median 10dB Center Frequency [kHz] | 6.62 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (6.02 - 7.53) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.26 (4.55 - 8.77) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 36) |
Time: 2024-08-22 09:22UTC to 2024-08-22 09:28UTC
Event contains 2070 original clicks, 1035 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 848 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.53 |
| Median 10dB Center Frequency [kHz] | 7.51 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (6.95 - 8.17) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.66 (5.28 - 9.55) |
| Median duration [μs] (25-75 percentile) | 18 (0 - 305) |
Time: 2024-08-22 09:28UTC to 2024-08-22 09:34UTC
Event contains 2232 original clicks, 1116 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 963 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.72 |
| Median 10dB Center Frequency [kHz] | 6.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 ( 5.9 - 7.63) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.48 (4.02 - 9.33) |
| Median duration [μs] (25-75 percentile) | 422 (100 - 1150) |
Time: 2024-08-22 09:34UTC to 2024-08-22 09:40UTC
Event contains 2302 original clicks, 1151 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1020 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.57 |
| Median 10dB Center Frequency [kHz] | 7.67 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.41 ( 6.5 - 8.42) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.52 (4.61 - 10.3) |
| Median duration [μs] (25-75 percentile) | 305 (100 - 1000) |
Time: 2024-08-22 09:40UTC to 2024-08-22 09:46UTC
Event contains 1982 original clicks, 991 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 915 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.66 |
| Median 10dB Center Frequency [kHz] | 7.54 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.51 ( 6.9 - 8.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.37 (4.96 - 9.85) |
| Median duration [μs] (25-75 percentile) | 401 (25 - 1290) |
Time: 2024-08-22 09:46UTC to 2024-08-22 09:52UTC
Event contains 1916 original clicks, 958 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 875 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.17 |
| Median 10dB Center Frequency [kHz] | 8.07 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.57 (7.38 - 9.09) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.3 (4.85 - 10.7) |
| Median duration [μs] (25-75 percentile) | 412 (0 - 1400) |
Time: 2024-08-22 09:52UTC to 2024-08-22 09:58UTC
Event contains 2252 original clicks, 1126 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 966 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.02 |
| Median 10dB Center Frequency [kHz] | 7.84 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.5 ( 7.2 - 8.79) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.59 (4.61 - 10.6) |
| Median duration [μs] (25-75 percentile) | 370 (0 - 1554) |
Time: 2024-08-22 09:58UTC to 2024-08-22 10:04UTC
Event contains 2018 original clicks, 1009 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 902 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.29 |
| Median 10dB Center Frequency [kHz] | 8.34 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 ( 7.5 - 9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.96 (5.97 - 10.4) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 326) |
Time: 2024-08-22 10:04UTC to 2024-08-22 10:10UTC
Event contains 3026 original clicks, 1513 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1336 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.66 |
| Median 10dB Center Frequency [kHz] | 7.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (6.86 - 8.36) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.95 (5.07 - 10) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 1000) |
Time: 2024-08-22 10:22UTC to 2024-08-22 10:28UTC
Event contains 520 original clicks, 260 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 212 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.38 |
| Median 10dB Center Frequency [kHz] | 6.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (5.81 - 6.89) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.19 (4.62 - 7.82) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-22 10:28UTC to 2024-08-22 10:34UTC
Event contains 2150 original clicks, 1075 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 957 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.63 |
| Median 10dB Center Frequency [kHz] | 8.56 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (7.95 - 9.26) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.56 (6.54 - 10.5) |
| Median duration [μs] (25-75 percentile) | 7.8 (0 - 1000) |
Time: 2024-08-22 10:34UTC to 2024-08-22 10:40UTC
Event contains 2040 original clicks, 1020 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 938 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.34 |
| Median 10dB Center Frequency [kHz] | 8.41 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (7.55 - 9.15) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.79 (5.81 - 10.8) |
| Median duration [μs] (25-75 percentile) | 13 (0 - 1053) |
Time: 2024-08-22 10:40UTC to 2024-08-22 10:46UTC
Event contains 2120 original clicks, 1060 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 945 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 7.85 |
| Median 10dB Center Frequency [kHz] | 7.99 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (7.25 - 8.52) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.55 (5.42 - 9.98) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 1000) |
Time: 2024-08-22 10:46UTC to 2024-08-22 10:52UTC
Event contains 1928 original clicks, 964 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 798 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.2 |
| Median 3dB Center Frequency [kHz] | 8.07 |
| Median 10dB Center Frequency [kHz] | 7.89 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.09 (7.36 - 8.72) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.51 (5.57 - 9.87) |
| Median duration [μs] (25-75 percentile) | 33 (0 - 1000) |
Time: 2024-08-22 10:52UTC to 2024-08-22 10:58UTC
Event contains 1918 original clicks, 959 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 819 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.2 |
| Median 3dB Center Frequency [kHz] | 9.18 |
| Median 10dB Center Frequency [kHz] | 9.18 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (8.37 - 10) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.76 (6.55 - 11.3) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 212) |
Time: 2024-08-22 10:58UTC to 2024-08-22 11:04UTC
Event contains 1892 original clicks, 946 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 846 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.6 |
| Median 3dB Center Frequency [kHz] | 9.44 |
| Median 10dB Center Frequency [kHz] | 9.63 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (8.76 - 10.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.45 (7.64 - 11.3) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 1000) |
Time: 2024-08-22 11:04UTC to 2024-08-22 11:10UTC
Event contains 1862 original clicks, 931 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 813 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.6 |
| Median 3dB Center Frequency [kHz] | 9.42 |
| Median 10dB Center Frequency [kHz] | 9.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 (8.73 - 10.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.9 (7.27 - 11.5) |
| Median duration [μs] (25-75 percentile) | 7.8 (0 - 1379) |
Time: 2024-08-22 11:10UTC to 2024-08-22 11:16UTC
Event contains 2036 original clicks, 1018 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 858 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.8 |
| Median 10dB Center Frequency [kHz] | 8.81 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (8.14 - 9.39) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.39 ( 6.9 - 10.7) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 473) |
Time: 2024-08-22 11:28UTC to 2024-08-22 11:34UTC
Event contains 1964 original clicks, 982 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 816 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.74 |
| Median 10dB Center Frequency [kHz] | 7.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (7.01 - 8.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.92 (5.22 - 9.77) |
| Median duration [μs] (25-75 percentile) | 408 (0 - 2130) |
Time: 2024-08-22 11:34UTC to 2024-08-22 11:40UTC
Event contains 2126 original clicks, 1063 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 962 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.2 |
| Median 3dB Center Frequency [kHz] | 9.03 |
| Median 10dB Center Frequency [kHz] | 9.11 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.35 (8.19 - 9.83) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.9 ( 6.6 - 11.1) |
| Median duration [μs] (25-75 percentile) | 21 (0 - 1000) |
Time: 2024-08-22 11:40UTC to 2024-08-22 11:46UTC
Event contains 1836 original clicks, 918 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 837 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.12 |
| Median 10dB Center Frequency [kHz] | 8.21 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (7.31 - 8.92) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.58 (5.63 - 10.5) |
| Median duration [μs] (25-75 percentile) | 117 (0 - 1160) |
Time: 2024-08-22 11:46UTC to 2024-08-22 11:52UTC
Event contains 1020 original clicks, 510 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 474 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.47 |
| Median 10dB Center Frequency [kHz] | 6.84 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (5.92 - 7.08) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.56 (4.36 - 8.88) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 307) |
Time: 2024-08-22 11:52UTC to 2024-08-22 11:58UTC
Event contains 2126 original clicks, 1063 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 883 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.56 |
| Median 10dB Center Frequency [kHz] | 8.51 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (7.55 - 9.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.8 (5.72 - 10.7) |
| Median duration [μs] (25-75 percentile) | 574 (0 - 1469) |
Time: 2024-08-22 11:58UTC to 2024-08-22 12:04UTC
Event contains 2216 original clicks, 1108 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 852 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.13 |
| Median 10dB Center Frequency [kHz] | 7.43 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (6.11 - 8.23) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.15 ( 4.3 - 9.94) |
| Median duration [μs] (25-75 percentile) | 1182 (242 - 2306) |
Time: 2024-08-22 12:04UTC to 2024-08-22 12:10UTC
Event contains 2150 original clicks, 1075 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 823 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.92 |
| Median 10dB Center Frequency [kHz] | 7.18 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (6.17 - 7.79) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.64 (4.24 - 9.59) |
| Median duration [μs] (25-75 percentile) | 623 (5 - 1382) |
Time: 2024-08-22 12:10UTC to 2024-08-22 12:16UTC
Event contains 2220 original clicks, 1110 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 917 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.25 |
| Median 10dB Center Frequency [kHz] | 8.04 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.6 (7.26 - 9.04) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.01 (4.62 - 11.4) |
| Median duration [μs] (25-75 percentile) | 209 (21 - 1000) |
Time: 2024-08-22 12:46UTC to 2024-08-22 12:52UTC
Event contains 1588 original clicks, 794 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 676 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.75 |
| Median 10dB Center Frequency [kHz] | 6.72 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.964 (6.12 - 7.37) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.86 (4.96 - 8.11) |
| Median duration [μs] (25-75 percentile) | 55 (0 - 1000) |
Time: 2024-08-22 12:52UTC to 2024-08-22 12:58UTC
Event contains 2310 original clicks, 1155 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 980 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.47 |
| Median 10dB Center Frequency [kHz] | 7.43 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (6.85 - 8.03) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.24 (5.44 - 9.31) |
| Median duration [μs] (25-75 percentile) | 10 (0 - 426) |
Time: 2024-08-22 12:58UTC to 2024-08-22 13:04UTC
Event contains 1836 original clicks, 918 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 817 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.16 |
| Median 10dB Center Frequency [kHz] | 8.11 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.6 (7.29 - 9.07) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.82 (5.14 - 11) |
| Median duration [μs] (25-75 percentile) | 686 (112 - 1994) |
Time: 2024-08-22 13:04UTC to 2024-08-22 13:10UTC
Event contains 1886 original clicks, 943 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 824 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.84 |
| Median 10dB Center Frequency [kHz] | 7.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 (6.92 - 8.59) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.38 (5.11 - 10.3) |
| Median duration [μs] (25-75 percentile) | 510 (0 - 1265) |
Time: 2024-08-22 13:10UTC to 2024-08-22 13:16UTC
Event contains 2612 original clicks, 1306 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1088 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.52 |
| Median 10dB Center Frequency [kHz] | 7.59 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.39 (6.78 - 8.25) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.05 (5.03 - 9.81) |
| Median duration [μs] (25-75 percentile) | 610 (18 - 1614) |
Time: 2024-08-22 13:16UTC to 2024-08-22 13:22UTC
Event contains 2734 original clicks, 1367 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1133 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.81 |
| Median 10dB Center Frequency [kHz] | 7.73 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (7.16 - 8.44) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.58 (5.43 - 9.62) |
| Median duration [μs] (25-75 percentile) | 89 (0 - 1000) |
Time: 2024-08-22 13:22UTC to 2024-08-22 13:28UTC
Event contains 2246 original clicks, 1123 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1025 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.13 |
| Median 10dB Center Frequency [kHz] | 7.96 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (7.34 - 8.88) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.2 (5.26 - 10.3) |
| Median duration [μs] (25-75 percentile) | 355 (0 - 1601) |
Time: 2024-08-22 13:28UTC to 2024-08-22 13:34UTC
Event contains 3440 original clicks, 1720 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1540 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.27 |
| Median 10dB Center Frequency [kHz] | 7.33 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (6.55 - 8.06) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.05 (4.92 - 9.72) |
| Median duration [μs] (25-75 percentile) | 159 (0 - 1000) |
Time: 2024-08-22 13:34UTC to 2024-08-22 13:40UTC
Event contains 2672 original clicks, 1336 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1109 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.66 |
| Median 10dB Center Frequency [kHz] | 7.66 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 (6.89 - 8.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.84 (5.51 - 9.79) |
| Median duration [μs] (25-75 percentile) | 99 (0 - 1000) |
Time: 2024-08-22 13:52UTC to 2024-08-22 13:58UTC
Event contains 2668 original clicks, 1334 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1199 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.25 |
| Median 10dB Center Frequency [kHz] | 7.22 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (6.53 - 7.98) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.81 (4.85 - 9.12) |
| Median duration [μs] (25-75 percentile) | 422 (33 - 1233) |
Time: 2024-08-22 13:58UTC to 2024-08-22 14:04UTC
Event contains 1904 original clicks, 952 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 851 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.38 |
| Median 10dB Center Frequency [kHz] | 7.44 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.44 (6.58 - 8.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.08 ( 4.7 - 9.7) |
| Median duration [μs] (25-75 percentile) | 315 (4 - 1253) |
Time: 2024-08-22 14:04UTC to 2024-08-22 14:10UTC
Event contains 1976 original clicks, 988 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 803 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.63 |
| Median 10dB Center Frequency [kHz] | 6.82 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 ( 5.9 - 7.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.01 (4.45 - 9.01) |
| Median duration [μs] (25-75 percentile) | 717 (112 - 1324) |
Time: 2024-08-22 14:10UTC to 2024-08-22 14:16UTC
Event contains 1940 original clicks, 970 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 818 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.21 |
| Median 10dB Center Frequency [kHz] | 7.16 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (6.53 - 7.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.05 (4.55 - 9.19) |
| Median duration [μs] (25-75 percentile) | 536 (13 - 1316) |
Time: 2024-08-22 14:16UTC to 2024-08-22 14:22UTC
Event contains 1688 original clicks, 844 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 697 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.01 |
| Median 10dB Center Frequency [kHz] | 6.92 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 ( 6.3 - 7.76) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.91 (4.59 - 9.08) |
| Median duration [μs] (25-75 percentile) | 388 (100 - 1223) |
Time: 2024-08-22 14:22UTC to 2024-08-22 14:28UTC
Event contains 1748 original clicks, 874 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 776 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.31 |
| Median 10dB Center Frequency [kHz] | 7.13 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (6.56 - 8.03) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.21 (4.81 - 9.35) |
| Median duration [μs] (25-75 percentile) | 298 (36 - 1000) |
Time: 2024-08-22 14:28UTC to 2024-08-22 14:34UTC
Event contains 1860 original clicks, 930 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 818 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.67 |
| Median 10dB Center Frequency [kHz] | 7.57 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.42 (6.96 - 8.37) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.03 (5.09 - 9.84) |
| Median duration [μs] (25-75 percentile) | 456 (112 - 1259) |
Time: 2024-08-22 14:34UTC to 2024-08-22 14:40UTC
Event contains 2304 original clicks, 1152 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 985 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.73 |
| Median 10dB Center Frequency [kHz] | 7.53 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 (6.99 - 8.53) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.95 (5.41 - 9.92) |
| Median duration [μs] (25-75 percentile) | 193 (3 - 1000) |
Time: 2024-08-22 14:46UTC to 2024-08-22 14:52UTC
Event contains 488 original clicks, 244 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 185 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.16 |
| Median 10dB Center Frequency [kHz] | 6.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 (5.57 - 6.59) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.85 (4.59 - 7.61) |
| Median duration [μs] (25-75 percentile) | 933 (136 - 1551) |
Time: 2024-08-22 14:52UTC to 2024-08-22 14:58UTC
Event contains 1698 original clicks, 849 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 704 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.92 |
| Median 10dB Center Frequency [kHz] | 6.84 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (6.25 - 7.62) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.17 (4.95 - 8.54) |
| Median duration [μs] (25-75 percentile) | 722 (171 - 1526) |
Time: 2024-08-22 14:58UTC to 2024-08-22 15:04UTC
Event contains 1610 original clicks, 805 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 705 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.02 |
| Median 10dB Center Frequency [kHz] | 7.72 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (7.18 - 8.74) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.06 (5.52 - 10.1) |
| Median duration [μs] (25-75 percentile) | 425 (100 - 1027) |
Time: 2024-08-22 15:04UTC to 2024-08-22 15:10UTC
Event contains 1420 original clicks, 710 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 621 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.8 |
| Median 10dB Center Frequency [kHz] | 7.83 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (6.94 - 8.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.01 (5.34 - 9.99) |
| Median duration [μs] (25-75 percentile) | 709 (185 - 1225) |
Time: 2024-08-22 15:10UTC to 2024-08-22 15:16UTC
Event contains 2118 original clicks, 1059 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 910 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.18 |
| Median 10dB Center Frequency [kHz] | 6.31 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (5.55 - 6.94) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.44 (4.24 - 8.36) |
| Median duration [μs] (25-75 percentile) | 748 (107 - 1651) |
Time: 2024-08-22 15:16UTC to 2024-08-22 15:22UTC
Event contains 1672 original clicks, 836 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 713 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.79 |
| Median 10dB Center Frequency [kHz] | 7.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.47 (6.14 - 7.65) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.49 (4.39 - 9.56) |
| Median duration [μs] (25-75 percentile) | 852 (159 - 1781) |
Time: 2024-08-22 15:22UTC to 2024-08-22 15:28UTC
Event contains 1474 original clicks, 737 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 619 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.56 |
| Median 10dB Center Frequency [kHz] | 6.76 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (5.82 - 7.49) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.1 (4.17 - 8.81) |
| Median duration [μs] (25-75 percentile) | 759 (117 - 1496) |
Time: 2024-08-22 15:28UTC to 2024-08-22 15:34UTC
Event contains 1610 original clicks, 805 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 686 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.86 |
| Median 10dB Center Frequency [kHz] | 6.83 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (6.03 - 7.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4 (4.33 - 9.11) |
| Median duration [μs] (25-75 percentile) | 833 (194 - 1577) |
Time: 2024-08-22 15:34UTC to 2024-08-22 15:40UTC
Event contains 1364 original clicks, 682 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 597 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.98 |
| Median 10dB Center Frequency [kHz] | 6.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (6.16 - 7.67) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.83 (4.38 - 8.98) |
| Median duration [μs] (25-75 percentile) | 871 (229 - 1538) |
Time: 2024-08-22 15:40UTC to 2024-08-22 15:46UTC
Event contains 670 original clicks, 335 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 270 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.48 |
| Median 10dB Center Frequency [kHz] | 6.42 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (5.82 - 7.09) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.49 (4.26 - 8.33) |
| Median duration [μs] (25-75 percentile) | 975 (261 - 1615) |
Time: 2024-08-22 15:52UTC to 2024-08-22 15:58UTC
Event contains 1258 original clicks, 629 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 505 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.98 |
| Median 10dB Center Frequency [kHz] | 6.96 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.998 (6.44 - 7.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.85 (5.45 - 8.38) |
| Median duration [μs] (25-75 percentile) | 847 (100 - 1468) |
Time: 2024-08-22 15:58UTC to 2024-08-22 16:04UTC
Event contains 1144 original clicks, 572 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 488 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.58 |
| Median 10dB Center Frequency [kHz] | 7.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (6.83 - 8.34) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.5 (5.76 - 9.54) |
| Median duration [μs] (25-75 percentile) | 735 (213 - 1362) |
Time: 2024-08-22 16:04UTC to 2024-08-22 16:10UTC
Event contains 1550 original clicks, 775 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 688 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.75 |
| Median 10dB Center Frequency [kHz] | 6.68 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 ( 6.1 - 7.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.55 (4.62 - 8.67) |
| Median duration [μs] (25-75 percentile) | 795 (218 - 1406) |
Time: 2024-08-22 16:10UTC to 2024-08-22 16:16UTC
Event contains 1736 original clicks, 868 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 727 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.82 |
| Median 10dB Center Frequency [kHz] | 6.77 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (6.12 - 7.53) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.44 (4.57 - 8.63) |
| Median duration [μs] (25-75 percentile) | 1056 (407 - 1582) |
Time: 2024-08-22 16:16UTC to 2024-08-22 16:22UTC
Event contains 1312 original clicks, 656 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 550 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.22 |
| Median 10dB Center Frequency [kHz] | 6.39 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (5.59 - 6.85) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.35 ( 4.4 - 8.27) |
| Median duration [μs] (25-75 percentile) | 1191 (487 - 1712) |
Time: 2024-08-22 16:22UTC to 2024-08-22 16:28UTC
Event contains 1458 original clicks, 729 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 590 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.73 |
| Median 10dB Center Frequency [kHz] | 6.17 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (5.06 - 6.45) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.55 (3.98 - 8.24) |
| Median duration [μs] (25-75 percentile) | 1143 (360 - 1765) |
Time: 2024-08-22 16:28UTC to 2024-08-22 16:34UTC
Event contains 1582 original clicks, 791 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 623 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.65 |
| Median 10dB Center Frequency [kHz] | 6.73 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (5.95 - 7.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.78 (4.58 - 8.64) |
| Median duration [μs] (25-75 percentile) | 1210 (1000 - 1980) |
Time: 2024-08-22 16:34UTC to 2024-08-22 16:40UTC
Event contains 1692 original clicks, 846 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 699 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.8 |
| Median 10dB Center Frequency [kHz] | 5.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (5.08 - 6.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.3 ( 3.9 - 7.63) |
| Median duration [μs] (25-75 percentile) | 1332 (1000 - 2110) |
Time: 2024-08-22 16:40UTC to 2024-08-22 16:46UTC
Event contains 772 original clicks, 386 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 285 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.61 |
| Median 10dB Center Frequency [kHz] | 6.64 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.01 (6.08 - 7.04) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.85 (5.15 - 8.2) |
| Median duration [μs] (25-75 percentile) | 1035 (404 - 1861) |
Time: 2024-08-22 16:52UTC to 2024-08-22 16:58UTC
Event contains 616 original clicks, 308 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 243 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.38 |
| Median 10dB Center Frequency [kHz] | 6.09 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 (5.75 - 7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.64 ( 4.4 - 7.72) |
| Median duration [μs] (25-75 percentile) | 954 (408 - 1598) |
Time: 2024-08-22 16:58UTC to 2024-08-22 17:04UTC
Event contains 1190 original clicks, 595 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 496 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.33 |
| Median 10dB Center Frequency [kHz] | 7.36 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (6.76 - 7.86) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.54 (5.58 - 9.17) |
| Median duration [μs] (25-75 percentile) | 254 (0 - 1020) |
Time: 2024-08-22 17:04UTC to 2024-08-22 17:10UTC
Event contains 976 original clicks, 488 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 405 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.38 |
| Median 10dB Center Frequency [kHz] | 6.47 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (5.76 - 7.02) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.11 (4.13 - 8.12) |
| Median duration [μs] (25-75 percentile) | 94 (0 - 1000) |
Time: 2024-08-22 17:22UTC to 2024-08-22 17:28UTC
Event contains 770 original clicks, 385 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 315 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.44 |
| Median 10dB Center Frequency [kHz] | 5.75 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.949 (4.96 - 6.02) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.21 (3.97 - 7.53) |
| Median duration [μs] (25-75 percentile) | 55 (0 - 1000) |
Time: 2024-08-22 17:58UTC to 2024-08-22 18:04UTC
Event contains 1594 original clicks, 797 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 637 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.81 |
| Median 10dB Center Frequency [kHz] | 5.83 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (5.14 - 6.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.76 (4.29 - 7.33) |
| Median duration [μs] (25-75 percentile) | 1585 (1170 - 2221) |
Time: 2024-08-22 18:04UTC to 2024-08-22 18:10UTC
Event contains 978 original clicks, 489 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 391 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.84 |
| Median 10dB Center Frequency [kHz] | 5.71 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.935 (5.09 - 6.29) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.64 (4.08 - 7.42) |
| Median duration [μs] (25-75 percentile) | 1856 (1096 - 2384) |
Time: 2024-08-22 18:16UTC to 2024-08-22 18:22UTC
Event contains 602 original clicks, 301 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 244 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.78 |
| Median 10dB Center Frequency [kHz] | 5.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.977 (5.34 - 6.45) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.82 (3.98 - 7.43) |
| Median duration [μs] (25-75 percentile) | 1350 (426 - 2233) |
Time: 2024-08-22 21:34UTC to 2024-08-22 21:40UTC
Event contains 440 original clicks, 220 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 101 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.29 |
| Median 10dB Center Frequency [kHz] | 6.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (5.64 - 6.92) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.16 (4.05 - 7.9) |
| Median duration [μs] (25-75 percentile) | 988 (177 - 1968) |
Time: 2024-08-22 21:40UTC to 2024-08-22 21:46UTC
Event contains 402 original clicks, 201 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 49 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 11.6 |
| Median 3dB Center Frequency [kHz] | 11 |
| Median 10dB Center Frequency [kHz] | 11 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.688 (10.6 - 11.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.83 (9.35 - 11.8) |
| Median duration [μs] (25-75 percentile) | 123 (26 - 1009) |
Time: 2024-08-22 21:46UTC to 2024-08-22 21:52UTC
Event contains 466 original clicks, 233 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 66 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10 |
| Median 3dB Center Frequency [kHz] | 10.2 |
| Median 10dB Center Frequency [kHz] | 10.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.686 (9.94 - 10.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.21 (9.29 - 10.8) |
| Median duration [μs] (25-75 percentile) | 202 (35 - 1087) |
Time: 2024-08-22 21:58UTC to 2024-08-22 22:04UTC
Event contains 458 original clicks, 229 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 121 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.21 |
| Median 10dB Center Frequency [kHz] | 8.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.985 (7.44 - 8.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.57 (6.15 - 11) |
| Median duration [μs] (25-75 percentile) | 647 (227 - 1546) |
Time: 2024-08-22 22:04UTC to 2024-08-22 22:10UTC
Event contains 756 original clicks, 378 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 162 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.21 |
| Median 10dB Center Frequency [kHz] | 7.19 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.878 ( 6.7 - 7.72) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.59 (5.64 - 8.4) |
| Median duration [μs] (25-75 percentile) | 981 (192 - 1880) |
Time: 2024-08-22 22:22UTC to 2024-08-22 22:28UTC
Event contains 932 original clicks, 466 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 344 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.02 |
| Median 10dB Center Frequency [kHz] | 6.03 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.45 - 6.69) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.93 (4.24 - 7.85) |
| Median duration [μs] (25-75 percentile) | 1648 (1143 - 2279) |
Time: 2024-08-22 22:34UTC to 2024-08-22 22:40UTC
Event contains 442 original clicks, 221 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 156 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.25 |
| Median 10dB Center Frequency [kHz] | 6.08 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (5.61 - 6.98) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.13 ( 4.2 - 8.06) |
| Median duration [μs] (25-75 percentile) | 1356 (1000 - 1826) |
Time: 2024-08-23 03:04UTC to 2024-08-23 03:10UTC
Event contains 4490 original clicks, 2245 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2007 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.73 |
| Median 10dB Center Frequency [kHz] | 5.96 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.12 - 6.49) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.14 (4.07 - 7.69) |
| Median duration [μs] (25-75 percentile) | 1496 (1000 - 2281) |
Time: 2024-08-23 03:16UTC to 2024-08-23 03:22UTC
Event contains 4054 original clicks, 2027 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1765 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.82 |
| Median 10dB Center Frequency [kHz] | 5.83 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (5.14 - 6.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.28 (3.92 - 7.62) |
| Median duration [μs] (25-75 percentile) | 1470 (222 - 2323) |
Time: 2024-08-23 03:28UTC to 2024-08-23 03:34UTC
Event contains 3922 original clicks, 1961 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1760 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.17 |
| Median 10dB Center Frequency [kHz] | 6.19 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (5.66 - 6.76) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.12 (4.35 - 7.82) |
| Median duration [μs] (25-75 percentile) | 1507 (1000 - 2341) |
Time: 2024-08-23 03:52UTC to 2024-08-23 03:58UTC
Event contains 3034 original clicks, 1517 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1307 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.06 |
| Median 10dB Center Frequency [kHz] | 6.08 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.01 (5.45 - 6.61) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.22 (4.14 - 7.92) |
| Median duration [μs] (25-75 percentile) | 1504 (1000 - 2361) |
Time: 2024-08-23 03:58UTC to 2024-08-23 04:04UTC
Event contains 2110 original clicks, 1055 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 857 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.23 |
| Median 10dB Center Frequency [kHz] | 6.32 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.35 (5.59 - 6.93) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.57 (4.16 - 8.53) |
| Median duration [μs] (25-75 percentile) | 1361 (1000 - 2265) |
Time: 2024-08-23 04:04UTC to 2024-08-23 04:10UTC
Event contains 2588 original clicks, 1294 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1059 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.12 |
| Median 10dB Center Frequency [kHz] | 6.19 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (5.55 - 6.82) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.25 (4.42 - 8.05) |
| Median duration [μs] (25-75 percentile) | 1551 (1000 - 2358) |
Time: 2024-08-23 04:10UTC to 2024-08-23 04:16UTC
Event contains 2760 original clicks, 1380 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1104 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.02 |
| Median 10dB Center Frequency [kHz] | 6.07 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.09 (5.41 - 6.61) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.37 ( 4.1 - 8) |
| Median duration [μs] (25-75 percentile) | 1530 (1000 - 2381) |
Time: 2024-08-23 04:16UTC to 2024-08-23 04:22UTC
Event contains 2064 original clicks, 1032 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 797 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.41 |
| Median 10dB Center Frequency [kHz] | 6.43 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (5.86 - 7.01) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.5 (4.28 - 8.39) |
| Median duration [μs] (25-75 percentile) | 1410 (422 - 2354) |
Time: 2024-08-23 04:22UTC to 2024-08-23 04:28UTC
Event contains 3074 original clicks, 1537 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1240 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.05 |
| Median 10dB Center Frequency [kHz] | 6.24 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.49 - 6.62) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.14 (4.26 - 7.96) |
| Median duration [μs] (25-75 percentile) | 1636 (1000 - 2354) |
Time: 2024-08-23 04:28UTC to 2024-08-23 04:34UTC
Event contains 4004 original clicks, 2002 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1627 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.49 |
| Median 10dB Center Frequency [kHz] | 6.43 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.87 - 7.02) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.12 (4.51 - 8.18) |
| Median duration [μs] (25-75 percentile) | 1444 (177 - 2380) |
Time: 2024-08-23 04:46UTC to 2024-08-23 04:52UTC
Event contains 3112 original clicks, 1556 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1224 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.04 |
| Median 10dB Center Frequency [kHz] | 5.97 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 ( 5.5 - 6.64) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.98 (4.34 - 7.71) |
| Median duration [μs] (25-75 percentile) | 1475 (257 - 2377) |
Time: 2024-08-23 04:52UTC to 2024-08-23 04:58UTC
Event contains 2354 original clicks, 1177 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1020 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.25 |
| Median 10dB Center Frequency [kHz] | 6.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (5.57 - 6.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.3 (4.02 - 8.3) |
| Median duration [μs] (25-75 percentile) | 1525 (1000 - 2357) |
Time: 2024-08-23 04:58UTC to 2024-08-23 05:04UTC
Event contains 1592 original clicks, 796 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 681 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.5 |
| Median 10dB Center Frequency [kHz] | 7.34 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 ( 6.7 - 8.25) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.54 ( 4.7 - 9.44) |
| Median duration [μs] (25-75 percentile) | 1283 (381 - 2190) |
Time: 2024-08-23 05:04UTC to 2024-08-23 05:10UTC
Event contains 1816 original clicks, 908 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 793 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.25 |
| Median 10dB Center Frequency [kHz] | 6.31 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (5.58 - 6.96) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.4 (4.19 - 8.17) |
| Median duration [μs] (25-75 percentile) | 1551 (1000 - 2331) |
Time: 2024-08-23 05:16UTC to 2024-08-23 05:22UTC
Event contains 1420 original clicks, 710 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 604 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.21 |
| Median 10dB Center Frequency [kHz] | 6.73 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (5.36 - 7.24) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.67 (3.88 - 9.1) |
| Median duration [μs] (25-75 percentile) | 1674 (1000 - 2414) |
Time: 2024-08-23 05:22UTC to 2024-08-23 05:28UTC
Event contains 1226 original clicks, 613 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 496 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.56 |
| Median 10dB Center Frequency [kHz] | 6.72 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 ( 5.7 - 7.28) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.82 (3.97 - 8.95) |
| Median duration [μs] (25-75 percentile) | 1378 (1000 - 2357) |
Time: 2024-08-23 05:28UTC to 2024-08-23 05:34UTC
Event contains 730 original clicks, 365 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 313 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.96 |
| Median 10dB Center Frequency [kHz] | 7.92 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 (7.17 - 8.65) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.33 (5.31 - 10.3) |
| Median duration [μs] (25-75 percentile) | 693 (100 - 1462) |
Time: 2024-08-23 05:52UTC to 2024-08-23 05:58UTC
Event contains 3892 original clicks, 1946 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1535 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.31 |
| Median 10dB Center Frequency [kHz] | 6.27 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 (5.76 - 6.93) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.09 (4.48 - 7.98) |
| Median duration [μs] (25-75 percentile) | 1212 (293 - 2221) |
Time: 2024-08-23 08:58UTC to 2024-08-23 09:04UTC
Event contains 2060 original clicks, 1030 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 686 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.89 |
| Median 10dB Center Frequency [kHz] | 5.97 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (5.25 - 6.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.19 (4.15 - 7.57) |
| Median duration [μs] (25-75 percentile) | 1860 (1079 - 2385) |
Time: 2024-08-23 09:04UTC to 2024-08-23 09:10UTC
Event contains 1654 original clicks, 827 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 529 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.97 |
| Median 10dB Center Frequency [kHz] | 5.92 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (5.35 - 6.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.1 (4.18 - 7.58) |
| Median duration [μs] (25-75 percentile) | 1575 (1011 - 2273) |
Time: 2024-08-23 10:58UTC to 2024-08-23 11:04UTC
Event contains 514 original clicks, 257 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 74 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10.4 |
| Median 3dB Center Frequency [kHz] | 9.77 |
| Median 10dB Center Frequency [kHz] | 9.78 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.891 (9.08 - 10.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.01 (8.59 - 10.6) |
| Median duration [μs] (25-75 percentile) | 295 (0.7 - 1000) |
Time: 2024-08-23 12:34UTC to 2024-08-23 12:40UTC
Event contains 590 original clicks, 295 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 209 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.82 |
| Median 10dB Center Frequency [kHz] | 5.75 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.953 (5.37 - 6.38) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.71 (4.33 - 7.16) |
| Median duration [μs] (25-75 percentile) | 1184 (456 - 1992) |
Time: 2024-08-23 12:40UTC to 2024-08-23 12:46UTC
Event contains 438 original clicks, 219 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 168 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.14 |
| Median 10dB Center Frequency [kHz] | 6.09 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (5.49 - 6.83) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.17 (4.08 - 7.93) |
| Median duration [μs] (25-75 percentile) | 1384 (1000 - 2328) |
Time: 2024-08-23 13:10UTC to 2024-08-23 13:16UTC
Event contains 3236 original clicks, 1618 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1241 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.88 |
| Median 10dB Center Frequency [kHz] | 6.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (5.21 - 6.61) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.27 ( 4.1 - 7.96) |
| Median duration [μs] (25-75 percentile) | 1301 (263 - 1942) |
Time: 2024-08-23 13:16UTC to 2024-08-23 13:22UTC
Event contains 6176 original clicks, 3088 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2586 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.76 |
| Median 10dB Center Frequency [kHz] | 5.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (5.07 - 6.44) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.96 ( 4.1 - 7.54) |
| Median duration [μs] (25-75 percentile) | 1676 (1163 - 2328) |
Time: 2024-08-23 13:28UTC to 2024-08-23 13:34UTC
Event contains 7630 original clicks, 3815 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3155 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.76 |
| Median 10dB Center Frequency [kHz] | 6.02 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (5.16 - 6.43) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.1 (4.12 - 7.79) |
| Median duration [μs] (25-75 percentile) | 1708 (1144 - 2318) |
Time: 2024-08-23 13:34UTC to 2024-08-23 13:40UTC
Event contains 7122 original clicks, 3561 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2962 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.73 |
| Median 10dB Center Frequency [kHz] | 5.92 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (5.13 - 6.36) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.95 (4.09 - 7.6) |
| Median duration [μs] (25-75 percentile) | 1625 (1150 - 2275) |
Time: 2024-08-23 13:40UTC to 2024-08-23 13:46UTC
Event contains 6142 original clicks, 3071 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2649 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.11 |
| Median 10dB Center Frequency [kHz] | 6.33 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (5.42 - 6.88) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.22 (4.32 - 8.2) |
| Median duration [μs] (25-75 percentile) | 1468 (1000 - 2057) |
Time: 2024-08-23 13:46UTC to 2024-08-23 13:52UTC
Event contains 4610 original clicks, 2305 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1951 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.45 |
| Median 10dB Center Frequency [kHz] | 6.67 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (5.84 - 7.13) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.19 (4.62 - 8.6) |
| Median duration [μs] (25-75 percentile) | 1189 (1000 - 1726) |
Time: 2024-08-23 13:52UTC to 2024-08-23 13:58UTC
Event contains 2630 original clicks, 1315 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1126 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.49 |
| Median 10dB Center Frequency [kHz] | 6.77 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (5.82 - 7.11) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.27 ( 4.6 - 8.65) |
| Median duration [μs] (25-75 percentile) | 1060 (433 - 1569) |
Time: 2024-08-23 13:58UTC to 2024-08-23 14:04UTC
Event contains 760 original clicks, 380 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 258 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.31 |
| Median 10dB Center Frequency [kHz] | 7.38 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (6.67 - 7.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.1 (5.46 - 9.24) |
| Median duration [μs] (25-75 percentile) | 447 (100 - 1122) |
Time: 2024-08-23 14:04UTC to 2024-08-23 14:10UTC
Event contains 702 original clicks, 351 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 239 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.87 |
| Median 10dB Center Frequency [kHz] | 7.76 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (7.41 - 8.49) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.89 ( 5.7 - 9.65) |
| Median duration [μs] (25-75 percentile) | 227 (3 - 1000) |
Time: 2024-08-23 14:10UTC to 2024-08-23 14:16UTC
Event contains 2934 original clicks, 1467 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1248 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.07 |
| Median 10dB Center Frequency [kHz] | 7.31 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (6.23 - 8.02) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.69 (4.48 - 9.68) |
| Median duration [μs] (25-75 percentile) | 652 (147 - 1398) |
Time: 2024-08-23 14:16UTC to 2024-08-23 14:22UTC
Event contains 8574 original clicks, 4287 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3938 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.62 |
| Median 10dB Center Frequency [kHz] | 6.82 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (5.89 - 7.41) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.78 (4.52 - 9.02) |
| Median duration [μs] (25-75 percentile) | 1000 (1000 - 1618) |
Time: 2024-08-23 14:22UTC to 2024-08-23 14:28UTC
Event contains 8452 original clicks, 4226 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3915 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.8 |
| Median 10dB Center Frequency [kHz] | 7.05 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 (5.82 - 7.72) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.67 (4.06 - 9.7) |
| Median duration [μs] (25-75 percentile) | 1173 (1000 - 2192) |
Time: 2024-08-23 14:28UTC to 2024-08-23 14:34UTC
Event contains 6172 original clicks, 3086 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2895 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.03 |
| Median 10dB Center Frequency [kHz] | 7.34 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.46 (6.04 - 8.09) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.74 (4.13 - 10.1) |
| Median duration [μs] (25-75 percentile) | 1074 (460 - 2078) |
Time: 2024-08-23 14:34UTC to 2024-08-23 14:40UTC
Event contains 1608 original clicks, 804 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 611 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.18 |
| Median 10dB Center Frequency [kHz] | 7.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (6.36 - 8.39) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.46 (4.28 - 10.6) |
| Median duration [μs] (25-75 percentile) | 474 (100 - 1453) |
Time: 2024-08-23 14:40UTC to 2024-08-23 14:46UTC
Event contains 1342 original clicks, 671 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 440 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.2 |
| Median 3dB Center Frequency [kHz] | 9.12 |
| Median 10dB Center Frequency [kHz] | 9.17 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (8.37 - 9.97) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.71 (6.98 - 11.6) |
| Median duration [μs] (25-75 percentile) | 343 (13 - 1059) |
Time: 2024-08-23 14:46UTC to 2024-08-23 14:52UTC
Event contains 5726 original clicks, 2863 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2461 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.09 |
| Median 10dB Center Frequency [kHz] | 8.23 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.64 (6.97 - 9.23) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.59 (4.75 - 11.2) |
| Median duration [μs] (25-75 percentile) | 1111 (438 - 2432) |
Time: 2024-08-23 14:52UTC to 2024-08-23 14:58UTC
Event contains 9534 original clicks, 4767 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4407 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.37 |
| Median 10dB Center Frequency [kHz] | 8.51 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.62 (7.29 - 9.43) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.72 (4.74 - 11.6) |
| Median duration [μs] (25-75 percentile) | 1225 (1000 - 2458) |
Time: 2024-08-23 14:58UTC to 2024-08-23 15:04UTC
Event contains 9852 original clicks, 4926 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4623 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.31 |
| Median 10dB Center Frequency [kHz] | 8.56 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.73 (7.17 - 9.46) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.88 (4.71 - 11.5) |
| Median duration [μs] (25-75 percentile) | 1723 (1000 - 2474) |
Time: 2024-08-23 15:04UTC to 2024-08-23 15:10UTC
Event contains 11024 original clicks, 5512 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5059 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.83 |
| Median 10dB Center Frequency [kHz] | 8.27 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.46 ( 6.8 - 9.01) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.87 (4.82 - 11.1) |
| Median duration [μs] (25-75 percentile) | 1157 (1000 - 2388) |
Time: 2024-08-23 15:10UTC to 2024-08-23 15:16UTC
Event contains 12208 original clicks, 6104 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5850 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.13 |
| Median 10dB Center Frequency [kHz] | 8.55 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.59 (7.09 - 9.39) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.05 (4.91 - 11.5) |
| Median duration [μs] (25-75 percentile) | 1330 (493 - 2385) |
Time: 2024-08-23 15:16UTC to 2024-08-23 15:22UTC
Event contains 12808 original clicks, 6404 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6042 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.2 |
| Median 3dB Center Frequency [kHz] | 8.93 |
| Median 10dB Center Frequency [kHz] | 9.18 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.45 (7.99 - 9.85) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.87 (5.85 - 11.8) |
| Median duration [μs] (25-75 percentile) | 1084 (227 - 2346) |
Time: 2024-08-23 15:22UTC to 2024-08-23 15:28UTC
Event contains 12018 original clicks, 6009 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5703 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.6 |
| Median 3dB Center Frequency [kHz] | 9.37 |
| Median 10dB Center Frequency [kHz] | 9.51 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.33 (8.53 - 10.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.56 (6.59 - 12.2) |
| Median duration [μs] (25-75 percentile) | 871 (42 - 1694) |
Time: 2024-08-23 15:28UTC to 2024-08-23 15:34UTC
Event contains 10814 original clicks, 5407 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5178 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.2 |
| Median 3dB Center Frequency [kHz] | 9.16 |
| Median 10dB Center Frequency [kHz] | 9.26 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.47 (8.24 - 10.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.68 ( 6.1 - 12) |
| Median duration [μs] (25-75 percentile) | 954 (42 - 2234) |
Time: 2024-08-23 15:34UTC to 2024-08-23 15:40UTC
Event contains 12562 original clicks, 6281 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5812 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.6 |
| Median 3dB Center Frequency [kHz] | 9.6 |
| Median 10dB Center Frequency [kHz] | 9.72 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.52 (8.65 - 10.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.93 ( 6.4 - 12.6) |
| Median duration [μs] (25-75 percentile) | 1047 (50 - 2088) |
Time: 2024-08-23 15:40UTC to 2024-08-23 15:46UTC
Event contains 13642 original clicks, 6821 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6455 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.2 |
| Median 3dB Center Frequency [kHz] | 9.11 |
| Median 10dB Center Frequency [kHz] | 9.34 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.48 ( 8.2 - 9.93) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.68 (5.86 - 11.9) |
| Median duration [μs] (25-75 percentile) | 1217 (113 - 2315) |
Time: 2024-08-23 15:46UTC to 2024-08-23 15:52UTC
Event contains 8746 original clicks, 4373 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4234 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.76 |
| Median 10dB Center Frequency [kHz] | 8.36 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.53 (6.77 - 8.65) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.59 (4.17 - 10.9) |
| Median duration [μs] (25-75 percentile) | 1429 (1000 - 2354) |
Time: 2024-08-23 15:52UTC to 2024-08-23 15:58UTC
Event contains 9480 original clicks, 4740 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4601 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.83 |
| Median 10dB Center Frequency [kHz] | 8.11 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.55 (6.88 - 8.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.72 (4.44 - 10.9) |
| Median duration [μs] (25-75 percentile) | 1277 (334 - 2432) |
Time: 2024-08-23 15:58UTC to 2024-08-23 16:04UTC
Event contains 11678 original clicks, 5839 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5474 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.17 |
| Median 10dB Center Frequency [kHz] | 8.37 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.56 (7.12 - 9.06) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.05 ( 4.3 - 11.2) |
| Median duration [μs] (25-75 percentile) | 1262 (1000 - 2458) |
Time: 2024-08-23 16:04UTC to 2024-08-23 16:10UTC
Event contains 7708 original clicks, 3854 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3626 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.85 |
| Median 10dB Center Frequency [kHz] | 7.16 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.64 (5.84 - 7.81) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.98 (3.69 - 10.2) |
| Median duration [μs] (25-75 percentile) | 1435 (1000 - 2474) |
Time: 2024-08-23 16:10UTC to 2024-08-23 16:16UTC
Event contains 7750 original clicks, 3875 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3605 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.69 |
| Median 10dB Center Frequency [kHz] | 7.09 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.59 (5.74 - 7.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.75 (3.81 - 9.87) |
| Median duration [μs] (25-75 percentile) | 1184 (433 - 2435) |
Time: 2024-08-23 16:16UTC to 2024-08-23 16:22UTC
Event contains 6798 original clicks, 3399 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3225 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.96 |
| Median 10dB Center Frequency [kHz] | 6.58 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.63 (5.09 - 7.07) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.74 (3.43 - 9.37) |
| Median duration [μs] (25-75 percentile) | 1186 (1000 - 2456) |
Time: 2024-08-23 16:22UTC to 2024-08-23 16:28UTC
Event contains 5734 original clicks, 2867 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2704 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.34 |
| Median 10dB Center Frequency [kHz] | 6.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.49 (5.43 - 7.23) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.72 (3.77 - 9.61) |
| Median duration [μs] (25-75 percentile) | 1189 (1000 - 2312) |
Time: 2024-08-23 16:28UTC to 2024-08-23 16:34UTC
Event contains 6090 original clicks, 3045 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2765 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.68 |
| Median 10dB Center Frequency [kHz] | 7.01 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (5.98 - 7.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.02 (4.24 - 9.28) |
| Median duration [μs] (25-75 percentile) | 1191 (1000 - 2062) |
Time: 2024-08-23 16:34UTC to 2024-08-23 16:40UTC
Event contains 6462 original clicks, 3231 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2989 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.72 |
| Median 10dB Center Frequency [kHz] | 6.15 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.36 (4.94 - 6.59) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.21 (3.53 - 8.62) |
| Median duration [μs] (25-75 percentile) | 1309 (1000 - 2229) |
Time: 2024-08-23 16:40UTC to 2024-08-23 16:46UTC
Event contains 7952 original clicks, 3976 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3651 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.17 |
| Median 10dB Center Frequency [kHz] | 6.44 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 ( 5.5 - 6.96) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.7 (4.09 - 8.58) |
| Median duration [μs] (25-75 percentile) | 1384 (1000 - 2074) |
Time: 2024-08-23 16:46UTC to 2024-08-23 16:52UTC
Event contains 8098 original clicks, 4049 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3709 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.21 |
| Median 10dB Center Frequency [kHz] | 6.48 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (5.56 - 6.89) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.54 (4.33 - 8.41) |
| Median duration [μs] (25-75 percentile) | 1376 (1000 - 1950) |
Time: 2024-08-23 16:52UTC to 2024-08-23 16:58UTC
Event contains 8454 original clicks, 4227 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3808 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.93 |
| Median 10dB Center Frequency [kHz] | 6.05 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.09 (5.31 - 6.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.44 (3.98 - 8) |
| Median duration [μs] (25-75 percentile) | 1379 (1000 - 1999) |
Time: 2024-08-23 16:58UTC to 2024-08-23 17:04UTC
Event contains 6930 original clicks, 3465 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3091 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.7 |
| Median 10dB Center Frequency [kHz] | 5.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 (5.08 - 6.37) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.25 (3.89 - 7.63) |
| Median duration [μs] (25-75 percentile) | 1507 (1071 - 2160) |
Time: 2024-08-23 17:28UTC to 2024-08-23 17:34UTC
Event contains 6656 original clicks, 3328 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2854 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.95 |
| Median 10dB Center Frequency [kHz] | 6.01 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.988 (5.35 - 6.53) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.12 (4.15 - 7.83) |
| Median duration [μs] (25-75 percentile) | 1744 (1199 - 2302) |
Time: 2024-08-23 17:52UTC to 2024-08-23 17:58UTC
Event contains 3410 original clicks, 1705 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1438 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.86 |
| Median 10dB Center Frequency [kHz] | 5.98 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (5.27 - 6.45) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.09 (4.15 - 7.73) |
| Median duration [μs] (25-75 percentile) | 1831 (1192 - 2364) |
Time: 2024-08-23 18:10UTC to 2024-08-23 18:16UTC
Event contains 3416 original clicks, 1708 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1408 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.74 |
| Median 10dB Center Frequency [kHz] | 5.87 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.13 - 6.33) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.12 (4.01 - 7.65) |
| Median duration [μs] (25-75 percentile) | 1749 (1131 - 2320) |
Time: 2024-08-23 18:34UTC to 2024-08-23 18:40UTC
Event contains 3558 original clicks, 1779 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1475 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.7 |
| Median 10dB Center Frequency [kHz] | 5.81 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.12 - 6.35) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.04 ( 4.1 - 7.39) |
| Median duration [μs] (25-75 percentile) | 1739 (1168 - 2361) |
Time: 2024-08-23 23:40UTC to 2024-08-23 23:46UTC
Event contains 444 original clicks, 222 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 193 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.99 |
| Median 10dB Center Frequency [kHz] | 8.37 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.51 (6.06 - 8.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.47 (4.07 - 12.3) |
| Median duration [μs] (25-75 percentile) | 443 (211 - 1000) |
Time: 2024-08-24 12:58UTC to 2024-08-24 13:04UTC
Event contains 686 original clicks, 343 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 157 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.85 |
| Median 10dB Center Frequency [kHz] | 5.76 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.28 - 6.42) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.51 (4.39 - 7) |
| Median duration [μs] (25-75 percentile) | 198 (39 - 1000) |
Time: 2024-08-24 13:04UTC to 2024-08-24 13:10UTC
Event contains 926 original clicks, 463 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 270 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.89 |
| Median 10dB Center Frequency [kHz] | 5.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (5.13 - 6.56) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.84 (4.32 - 7.31) |
| Median duration [μs] (25-75 percentile) | 220 (26 - 1000) |
Time: 2024-08-24 13:40UTC to 2024-08-24 13:46UTC
Event contains 544 original clicks, 272 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 196 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 11.4 |
| Median 3dB Center Frequency [kHz] | 11.2 |
| Median 10dB Center Frequency [kHz] | 11.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.33 (10.4 - 11.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.44 ( 6.5 - 15.1) |
| Median duration [μs] (25-75 percentile) | 276 (100 - 1000) |
Time: 2024-08-24 16:04UTC to 2024-08-24 16:10UTC
Event contains 504 original clicks, 252 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 48 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 12.4 |
| Median 3dB Center Frequency [kHz] | 10.4 |
| Median 10dB Center Frequency [kHz] | 10.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.62 ( 10 - 10.8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.31 (9.53 - 11.3) |
| Median duration [μs] (25-75 percentile) | 87 (38 - 237) |
Time: 2024-08-24 16:16UTC to 2024-08-24 16:22UTC
Event contains 776 original clicks, 388 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 70 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 15.6 |
| Median 3dB Center Frequency [kHz] | 11.3 |
| Median 10dB Center Frequency [kHz] | 11.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.633 ( 11 - 11.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.63 (10.3 - 12) |
| Median duration [μs] (25-75 percentile) | 192 (49 - 1000) |
Time: 2024-08-24 16:22UTC to 2024-08-24 16:28UTC
Event contains 628 original clicks, 314 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 62 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 14.4 |
| Median 3dB Center Frequency [kHz] | 12.2 |
| Median 10dB Center Frequency [kHz] | 12.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.626 (11.9 - 12.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.71 (11.2 - 13.4) |
| Median duration [μs] (25-75 percentile) | 98 (36 - 333) |
Time: 2024-08-24 16:28UTC to 2024-08-24 16:34UTC
Event contains 750 original clicks, 375 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 74 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 12.2 |
| Median 3dB Center Frequency [kHz] | 10.9 |
| Median 10dB Center Frequency [kHz] | 10.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.583 (10.6 - 11.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.21 (9.91 - 11.8) |
| Median duration [μs] (25-75 percentile) | 196 (34 - 1000) |
Time: 2024-08-24 16:34UTC to 2024-08-24 16:40UTC
Event contains 666 original clicks, 333 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 81 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10 |
| Median 3dB Center Frequency [kHz] | 9.85 |
| Median 10dB Center Frequency [kHz] | 9.82 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.81 (9.55 - 10.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.11 (8.22 - 11.6) |
| Median duration [μs] (25-75 percentile) | 375 (123 - 1000) |
Time: 2024-08-24 16:40UTC to 2024-08-24 16:46UTC
Event contains 556 original clicks, 278 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 104 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.6 |
| Median 3dB Center Frequency [kHz] | 8.6 |
| Median 10dB Center Frequency [kHz] | 8.61 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.33 ( 7.8 - 9.31) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.23 (6.49 - 10.1) |
| Median duration [μs] (25-75 percentile) | 305 (142 - 1000) |
Time: 2024-08-24 22:10UTC to 2024-08-24 22:16UTC
Event contains 544 original clicks, 272 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 233 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.25 |
| Median 10dB Center Frequency [kHz] | 8.81 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 2.07 (6.76 - 9.31) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.5 (5.16 - 12.3) |
| Median duration [μs] (25-75 percentile) | 263 (177 - 409) |
Time: 2024-08-24 23:22UTC to 2024-08-24 23:28UTC
Event contains 1510 original clicks, 755 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 549 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.06 |
| Median 10dB Center Frequency [kHz] | 7.05 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (6.66 - 7.53) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.58 (5.81 - 8.38) |
| Median duration [μs] (25-75 percentile) | 190 (0 - 422) |
Time: 2024-08-26 00:04UTC to 2024-08-26 00:10UTC
Event contains 994 original clicks, 497 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 435 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6 |
| Median 10dB Center Frequency [kHz] | 6.03 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.922 (5.56 - 6.54) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.66 (4.46 - 7.6) |
| Median duration [μs] (25-75 percentile) | 1684 (1133 - 2250) |
Time: 2024-08-26 00:10UTC to 2024-08-26 00:16UTC
Event contains 1038 original clicks, 519 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 454 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.72 |
| Median 10dB Center Frequency [kHz] | 5.89 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.955 (5.29 - 6.24) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.8 (4.16 - 7.28) |
| Median duration [μs] (25-75 percentile) | 1818 (1104 - 2353) |
Time: 2024-08-26 00:16UTC to 2024-08-26 00:22UTC
Event contains 982 original clicks, 491 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 428 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.71 |
| Median 10dB Center Frequency [kHz] | 5.77 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.976 (5.13 - 6.18) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.91 (3.89 - 7.33) |
| Median duration [μs] (25-75 percentile) | 1782 (1163 - 2315) |
Time: 2024-08-26 00:22UTC to 2024-08-26 00:28UTC
Event contains 1962 original clicks, 981 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 829 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.26 |
| Median 10dB Center Frequency [kHz] | 6.24 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.96 (5.65 - 6.84) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.92 (4.51 - 7.78) |
| Median duration [μs] (25-75 percentile) | 1895 (1332 - 2341) |
Time: 2024-08-26 00:28UTC to 2024-08-26 00:34UTC
Event contains 1484 original clicks, 742 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 654 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.31 |
| Median 10dB Center Frequency [kHz] | 6.24 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.904 (5.78 - 6.86) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.83 (4.54 - 7.68) |
| Median duration [μs] (25-75 percentile) | 1810 (1000 - 2323) |
Time: 2024-08-26 00:34UTC to 2024-08-26 00:40UTC
Event contains 1310 original clicks, 655 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 595 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.02 |
| Median 10dB Center Frequency [kHz] | 6.14 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.95 (5.36 - 6.71) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.77 (4.47 - 7.78) |
| Median duration [μs] (25-75 percentile) | 1786 (1127 - 2354) |
Time: 2024-08-26 00:58UTC to 2024-08-26 01:04UTC
Event contains 1012 original clicks, 506 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 453 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.78 |
| Median 10dB Center Frequency [kHz] | 5.92 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.948 (5.31 - 6.33) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.71 (4.27 - 7.47) |
| Median duration [μs] (25-75 percentile) | 1486 (1000 - 2185) |
Time: 2024-08-26 01:04UTC to 2024-08-26 01:10UTC
Event contains 1190 original clicks, 595 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 512 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.08 |
| Median 10dB Center Frequency [kHz] | 6.15 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.01 ( 5.5 - 6.74) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.9 (4.76 - 7.74) |
| Median duration [μs] (25-75 percentile) | 1810 (1079 - 2323) |
Time: 2024-08-26 02:04UTC to 2024-08-26 02:10UTC
Event contains 1486 original clicks, 743 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 672 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.11 |
| Median 10dB Center Frequency [kHz] | 6.25 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.977 (5.58 - 6.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.75 (4.65 - 7.68) |
| Median duration [μs] (25-75 percentile) | 1676 (1000 - 2329) |
Time: 2024-08-26 02:10UTC to 2024-08-26 02:16UTC
Event contains 1202 original clicks, 601 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 537 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.79 |
| Median 10dB Center Frequency [kHz] | 5.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.997 (5.24 - 6.37) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.13 (4.28 - 7.53) |
| Median duration [μs] (25-75 percentile) | 1726 (1035 - 2354) |
Time: 2024-08-26 02:46UTC to 2024-08-26 02:52UTC
Event contains 992 original clicks, 496 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 458 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.78 |
| Median 10dB Center Frequency [kHz] | 6.07 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (5.09 - 6.44) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.94 (4.09 - 7.75) |
| Median duration [μs] (25-75 percentile) | 1693 (1000 - 2333) |
Time: 2024-08-26 03:04UTC to 2024-08-26 03:10UTC
Event contains 1390 original clicks, 695 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 602 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.09 |
| Median 10dB Center Frequency [kHz] | 6.12 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.955 (5.54 - 6.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.81 (4.73 - 7.72) |
| Median duration [μs] (25-75 percentile) | 1997 (1204 - 2390) |
Time: 2024-08-26 03:16UTC to 2024-08-26 03:22UTC
Event contains 1548 original clicks, 774 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 655 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.92 |
| Median 10dB Center Frequency [kHz] | 6.01 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.976 (5.31 - 6.48) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.85 (4.39 - 7.55) |
| Median duration [μs] (25-75 percentile) | 2044 (1152 - 2400) |
Time: 2024-08-26 03:52UTC to 2024-08-26 03:58UTC
Event contains 3312 original clicks, 1656 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1209 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.9 |
| Median 10dB Center Frequency [kHz] | 5.84 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.963 (5.38 - 6.46) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.53 (4.42 - 7.17) |
| Median duration [μs] (25-75 percentile) | 1436 (1000 - 2135) |
Time: 2024-08-26 04:52UTC to 2024-08-26 04:58UTC
Event contains 898 original clicks, 449 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 397 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.3 |
| Median 10dB Center Frequency [kHz] | 6.24 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.896 (5.77 - 6.82) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.57 (4.64 - 7.77) |
| Median duration [μs] (25-75 percentile) | 1869 (1147 - 2341) |
Time: 2024-08-26 04:58UTC to 2024-08-26 05:04UTC
Event contains 878 original clicks, 439 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 391 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.69 |
| Median 10dB Center Frequency [kHz] | 6.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.926 (6.22 - 7.15) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.82 ( 5.3 - 8.26) |
| Median duration [μs] (25-75 percentile) | 1405 (451 - 2142) |
Time: 2024-08-26 05:16UTC to 2024-08-26 05:22UTC
Event contains 464 original clicks, 232 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 202 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.88 |
| Median 10dB Center Frequency [kHz] | 6.19 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1 (5.35 - 6.43) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.95 (4.19 - 7.85) |
| Median duration [μs] (25-75 percentile) | 1035 (298 - 1561) |
Time: 2024-08-26 05:22UTC to 2024-08-26 05:28UTC
Event contains 1094 original clicks, 547 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 491 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 5.84 |
| Median 10dB Center Frequency [kHz] | 6.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.944 ( 5.3 - 6.56) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.74 (4.46 - 7.82) |
| Median duration [μs] (25-75 percentile) | 1496 (1000 - 2162) |
Time: 2024-08-26 05:28UTC to 2024-08-26 05:34UTC
Event contains 678 original clicks, 339 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 297 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.14 |
| Median 10dB Center Frequency [kHz] | 6.12 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.963 (5.68 - 6.73) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.78 (4.59 - 7.7) |
| Median duration [μs] (25-75 percentile) | 1702 (1000 - 2304) |
Time: 2024-08-26 12:58UTC to 2024-08-26 13:04UTC
Event contains 1458 original clicks, 729 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 611 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.21 |
| Median 10dB Center Frequency [kHz] | 6.21 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 (5.64 - 6.81) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.85 (4.75 - 8.1) |
| Median duration [μs] (25-75 percentile) | 169 (0 - 1000) |
Time: 2024-08-26 13:04UTC to 2024-08-26 13:10UTC
Event contains 1392 original clicks, 696 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 620 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.04 |
| Median 10dB Center Frequency [kHz] | 6.32 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.998 (5.55 - 6.57) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.17 (4.75 - 7.86) |
| Median duration [μs] (25-75 percentile) | 89 (0 - 1000) |
Time: 2024-08-26 13:10UTC to 2024-08-26 13:16UTC
Event contains 1514 original clicks, 757 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 673 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.02 |
| Median 10dB Center Frequency [kHz] | 6.13 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (5.28 - 6.68) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.59 (4.11 - 8.25) |
| Median duration [μs] (25-75 percentile) | 547 (100 - 1147) |
Time: 2024-08-26 13:16UTC to 2024-08-26 13:22UTC
Event contains 1118 original clicks, 559 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 529 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.92 |
| Median 10dB Center Frequency [kHz] | 6.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.33 (5.93 - 7.88) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.54 (3.98 - 9.51) |
| Median duration [μs] (25-75 percentile) | 76 (0 - 1000) |
Time: 2024-08-26 13:22UTC to 2024-08-26 13:28UTC
Event contains 522 original clicks, 261 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 254 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.54 |
| Median 10dB Center Frequency [kHz] | 7.48 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.41 (6.94 - 8.35) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.38 (4.38 - 10.1) |
| Median duration [μs] (25-75 percentile) | 36 (0 - 334) |
Time: 2024-08-26 13:28UTC to 2024-08-26 13:34UTC
Event contains 912 original clicks, 456 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 454 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8 |
| Median 10dB Center Frequency [kHz] | 7.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.46 (7.13 - 8.87) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.91 (5.12 - 10.5) |
| Median duration [μs] (25-75 percentile) | 291 (34 - 1000) |
Time: 2024-08-26 13:34UTC to 2024-08-26 13:40UTC
Event contains 1826 original clicks, 913 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 851 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.53 |
| Median 10dB Center Frequency [kHz] | 6.69 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (5.57 - 7.36) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.9 (4.18 - 9.05) |
| Median duration [μs] (25-75 percentile) | 295 (0 - 1000) |
Time: 2024-08-26 13:40UTC to 2024-08-26 13:46UTC
Event contains 1940 original clicks, 970 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 872 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.74 |
| Median 10dB Center Frequency [kHz] | 7.64 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (6.99 - 8.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.27 (5.23 - 9.35) |
| Median duration [μs] (25-75 percentile) | 360 (0 - 1000) |
Time: 2024-08-26 13:46UTC to 2024-08-26 13:52UTC
Event contains 2114 original clicks, 1057 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 922 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.82 |
| Median 10dB Center Frequency [kHz] | 7.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 (7.23 - 8.44) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.28 ( 5.7 - 9.52) |
| Median duration [μs] (25-75 percentile) | 63 (0 - 1000) |
Time: 2024-08-26 13:52UTC to 2024-08-26 13:58UTC
Event contains 3072 original clicks, 1536 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1440 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.48 |
| Median 10dB Center Frequency [kHz] | 7.49 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.35 (6.76 - 8.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.2 (4.78 - 10) |
| Median duration [μs] (25-75 percentile) | 338 (0 - 1301) |
Time: 2024-08-26 13:58UTC to 2024-08-26 14:04UTC
Event contains 2362 original clicks, 1181 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1113 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.74 |
| Median 10dB Center Frequency [kHz] | 7.65 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.54 (6.77 - 8.84) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.45 (4.41 - 10.6) |
| Median duration [μs] (25-75 percentile) | 318 (26 - 1186) |
Time: 2024-08-26 14:04UTC to 2024-08-26 14:10UTC
Event contains 3838 original clicks, 1919 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1665 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.63 |
| Median 10dB Center Frequency [kHz] | 7.82 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.45 (6.75 - 8.44) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.68 (4.86 - 10.1) |
| Median duration [μs] (25-75 percentile) | 370 (5 - 1066) |
Time: 2024-08-26 14:10UTC to 2024-08-26 14:16UTC
Event contains 2548 original clicks, 1274 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1113 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.01 |
| Median 10dB Center Frequency [kHz] | 8.05 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (7.23 - 8.84) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.37 (5.42 - 10.4) |
| Median duration [μs] (25-75 percentile) | 182 (0 - 1058) |
Time: 2024-08-26 14:16UTC to 2024-08-26 14:22UTC
Event contains 2570 original clicks, 1285 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1190 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.11 |
| Median 10dB Center Frequency [kHz] | 8.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 (7.27 - 8.88) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.77 ( 5.7 - 10.4) |
| Median duration [μs] (25-75 percentile) | 115 (0 - 1000) |
Time: 2024-08-26 14:22UTC to 2024-08-26 14:28UTC
Event contains 3026 original clicks, 1513 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1330 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.73 |
| Median 10dB Center Frequency [kHz] | 7.71 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (7.05 - 8.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.55 (5.67 - 9.8) |
| Median duration [μs] (25-75 percentile) | 2.6 (0 - 342) |
Time: 2024-08-26 14:28UTC to 2024-08-26 14:34UTC
Event contains 1454 original clicks, 727 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 649 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.84 |
| Median 10dB Center Frequency [kHz] | 8.15 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.33 (6.88 - 8.65) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.24 (4.85 - 11.4) |
| Median duration [μs] (25-75 percentile) | 128 (0 - 1000) |
Time: 2024-08-26 14:34UTC to 2024-08-26 14:40UTC
Event contains 976 original clicks, 488 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 425 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.22 |
| Median 10dB Center Frequency [kHz] | 7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (6.63 - 7.86) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.67 (4.71 - 9.15) |
| Median duration [μs] (25-75 percentile) | 52 (0 - 370) |
Time: 2024-08-26 14:40UTC to 2024-08-26 14:46UTC
Event contains 1546 original clicks, 773 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 650 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.77 |
| Median 10dB Center Frequency [kHz] | 6.89 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (6.04 - 7.48) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.48 (4.96 - 8.64) |
| Median duration [μs] (25-75 percentile) | 162 (0 - 1000) |
Time: 2024-08-26 14:46UTC to 2024-08-26 14:52UTC
Event contains 2192 original clicks, 1096 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 955 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.02 |
| Median 10dB Center Frequency [kHz] | 8.17 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (7.11 - 8.81) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.98 (5.44 - 10.2) |
| Median duration [μs] (25-75 percentile) | 172 (0 - 1223) |
Time: 2024-08-26 14:52UTC to 2024-08-26 14:58UTC
Event contains 2856 original clicks, 1428 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1320 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8 |
| Median 10dB Center Frequency [kHz] | 7.98 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (7.18 - 8.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.7 ( 5.6 - 10.1) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 332) |
Time: 2024-08-26 14:58UTC to 2024-08-26 15:04UTC
Event contains 3048 original clicks, 1524 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1443 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.11 |
| Median 10dB Center Frequency [kHz] | 7.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 (7.36 - 8.87) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.04 (5.43 - 10.2) |
| Median duration [μs] (25-75 percentile) | 143 (0 - 1000) |
Time: 2024-08-26 15:04UTC to 2024-08-26 15:10UTC
Event contains 2996 original clicks, 1498 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1384 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.53 |
| Median 10dB Center Frequency [kHz] | 8.71 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.33 (7.65 - 9.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.36 (5.42 - 11.1) |
| Median duration [μs] (25-75 percentile) | 123 (0 - 1075) |
Time: 2024-08-26 15:10UTC to 2024-08-26 15:16UTC
Event contains 2596 original clicks, 1298 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1185 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.57 |
| Median 10dB Center Frequency [kHz] | 8.73 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (7.79 - 9.29) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.13 (6.21 - 11.1) |
| Median duration [μs] (25-75 percentile) | 26 (0 - 1000) |
Time: 2024-08-26 15:16UTC to 2024-08-26 15:22UTC
Event contains 2762 original clicks, 1381 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1242 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.14 |
| Median 10dB Center Frequency [kHz] | 8.38 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 (7.35 - 8.94) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.38 (5.45 - 10.8) |
| Median duration [μs] (25-75 percentile) | 89 (0 - 1000) |
Time: 2024-08-26 15:22UTC to 2024-08-26 15:28UTC
Event contains 2490 original clicks, 1245 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1148 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.16 |
| Median 10dB Center Frequency [kHz] | 8.35 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.54 (7.24 - 9.03) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.76 (5.53 - 11) |
| Median duration [μs] (25-75 percentile) | 133 (0 - 1191) |
Time: 2024-08-26 15:28UTC to 2024-08-26 15:34UTC
Event contains 2814 original clicks, 1407 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1278 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.49 |
| Median 10dB Center Frequency [kHz] | 8.62 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.35 ( 7.5 - 9.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.47 (5.76 - 11.1) |
| Median duration [μs] (25-75 percentile) | 172 (0 - 1000) |
Time: 2024-08-26 15:34UTC to 2024-08-26 15:40UTC
Event contains 2620 original clicks, 1310 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1220 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.46 |
| Median 10dB Center Frequency [kHz] | 8.59 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.39 (7.48 - 9.28) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.35 (5.68 - 11.1) |
| Median duration [μs] (25-75 percentile) | 136 (0 - 1000) |
Time: 2024-08-26 15:40UTC to 2024-08-26 15:46UTC
Event contains 2724 original clicks, 1362 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1222 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.75 |
| Median 10dB Center Frequency [kHz] | 7.99 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.37 (6.94 - 8.48) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.5 (4.57 - 10.7) |
| Median duration [μs] (25-75 percentile) | 78 (0 - 1000) |
Time: 2024-08-26 15:46UTC to 2024-08-26 15:52UTC
Event contains 2596 original clicks, 1298 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1176 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.79 |
| Median 10dB Center Frequency [kHz] | 7.92 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (6.91 - 8.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.5 (5.11 - 10.4) |
| Median duration [μs] (25-75 percentile) | 107 (0 - 1000) |
Time: 2024-08-26 15:52UTC to 2024-08-26 15:58UTC
Event contains 1996 original clicks, 998 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 929 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.61 |
| Median 10dB Center Frequency [kHz] | 8.11 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.52 (6.81 - 8.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.92 (5.06 - 11.1) |
| Median duration [μs] (25-75 percentile) | 237 (0 - 1000) |
Time: 2024-08-26 15:58UTC to 2024-08-26 16:04UTC
Event contains 1046 original clicks, 523 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 466 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.37 |
| Median 10dB Center Frequency [kHz] | 8.73 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.65 (7.53 - 9.27) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.75 (5.65 - 11.4) |
| Median duration [μs] (25-75 percentile) | 198 (40 - 456) |
Time: 2024-08-26 16:04UTC to 2024-08-26 16:10UTC
Event contains 484 original clicks, 242 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 208 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.46 |
| Median 10dB Center Frequency [kHz] | 7.61 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (6.72 - 8.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.54 (5.36 - 10.2) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 233) |
Time: 2024-08-26 16:10UTC to 2024-08-26 16:16UTC
Event contains 410 original clicks, 205 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 187 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.67 |
| Median 10dB Center Frequency [kHz] | 7.49 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (7.02 - 8.34) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.42 (4.48 - 10.2) |
| Median duration [μs] (25-75 percentile) | 120 (0 - 383) |
Time: 2024-08-26 16:16UTC to 2024-08-26 16:22UTC
Event contains 1072 original clicks, 536 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 514 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.24 |
| Median 10dB Center Frequency [kHz] | 7.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.5 (6.32 - 8.08) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.61 (3.37 - 10.2) |
| Median duration [μs] (25-75 percentile) | 151 (21 - 420) |
Time: 2024-08-26 16:22UTC to 2024-08-26 16:28UTC
Event contains 1502 original clicks, 751 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 697 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.97 |
| Median 10dB Center Frequency [kHz] | 7.91 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.56 (7.07 - 8.76) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.86 (4.81 - 10.4) |
| Median duration [μs] (25-75 percentile) | 109 (0 - 422) |
Time: 2024-08-26 16:28UTC to 2024-08-26 16:34UTC
Event contains 1992 original clicks, 996 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 956 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.79 |
| Median 10dB Center Frequency [kHz] | 7.93 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.66 (6.95 - 8.67) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.27 (4.83 - 10.6) |
| Median duration [μs] (25-75 percentile) | 300 (100 - 1000) |
Time: 2024-08-26 16:34UTC to 2024-08-26 16:40UTC
Event contains 1934 original clicks, 967 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 905 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.63 |
| Median 10dB Center Frequency [kHz] | 6.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (5.81 - 7.41) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.44 (3.92 - 9.33) |
| Median duration [μs] (25-75 percentile) | 151 (0 - 1000) |
Time: 2024-08-26 16:40UTC to 2024-08-26 16:46UTC
Event contains 2040 original clicks, 1020 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 983 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.79 |
| Median 10dB Center Frequency [kHz] | 7.29 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.6 (5.71 - 7.82) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.02 (3.64 - 10.1) |
| Median duration [μs] (25-75 percentile) | 365 (100 - 1000) |
Time: 2024-08-26 16:46UTC to 2024-08-26 16:52UTC
Event contains 1958 original clicks, 979 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 912 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.24 |
| Median 10dB Center Frequency [kHz] | 7.65 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.53 (6.35 - 8.08) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.58 (4.24 - 9.88) |
| Median duration [μs] (25-75 percentile) | 162 (0 - 1000) |
Time: 2024-08-26 16:58UTC to 2024-08-26 17:04UTC
Event contains 1656 original clicks, 828 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 759 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.53 |
| Median 10dB Center Frequency [kHz] | 6.47 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 (5.76 - 7.14) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.87 (3.91 - 8.65) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 253) |
Time: 2024-08-26 17:04UTC to 2024-08-26 17:10UTC
Event contains 1648 original clicks, 824 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 745 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.07 |
| Median 10dB Center Frequency [kHz] | 6.56 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.5 (5.09 - 6.97) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.44 (3.71 - 9.15) |
| Median duration [μs] (25-75 percentile) | 109 (0 - 428) |
Time: 2024-08-26 17:10UTC to 2024-08-26 17:16UTC
Event contains 1272 original clicks, 636 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 557 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.15 |
| Median 10dB Center Frequency [kHz] | 7.28 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (6.44 - 7.92) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.63 (4.63 - 9.65) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 128) |
Time: 2024-08-26 17:16UTC to 2024-08-26 17:22UTC
Event contains 778 original clicks, 389 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 341 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.39 |
| Median 10dB Center Frequency [kHz] | 6.64 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 ( 5.7 - 7.23) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.33 (4.01 - 9) |
| Median duration [μs] (25-75 percentile) | 39 (0 - 1000) |
Time: 2024-08-26 17:28UTC to 2024-08-26 17:34UTC
Event contains 466 original clicks, 233 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 194 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.61 |
| Median 10dB Center Frequency [kHz] | 6.53 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.997 (5.96 - 7.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.88 (4.94 - 8.09) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-26 17:34UTC to 2024-08-26 17:40UTC
Event contains 568 original clicks, 284 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 218 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.58 |
| Median 10dB Center Frequency [kHz] | 7.68 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.36 (6.84 - 8.28) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4 (5.24 - 10) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-26 17:40UTC to 2024-08-26 17:46UTC
Event contains 450 original clicks, 225 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 146 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.5 |
| Median 10dB Center Frequency [kHz] | 6.15 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 (5.92 - 7.07) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.46 (4.27 - 8.2) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-26 17:46UTC to 2024-08-26 17:52UTC
Event contains 710 original clicks, 355 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 271 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.47 |
| Median 10dB Center Frequency [kHz] | 6.45 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.932 (5.89 - 7.01) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.98 (4.75 - 8.35) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-26 17:52UTC to 2024-08-26 17:58UTC
Event contains 714 original clicks, 357 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 270 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.51 |
| Median 10dB Center Frequency [kHz] | 6.68 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.986 (5.96 - 7.03) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.02 (4.59 - 8.4) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 5) |
Time: 2024-08-26 17:58UTC to 2024-08-26 18:04UTC
Event contains 778 original clicks, 389 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 308 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.07 |
| Median 10dB Center Frequency [kHz] | 6.11 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 (5.47 - 6.64) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.39 (3.95 - 8.23) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 139) |
Time: 2024-08-26 18:16UTC to 2024-08-26 18:22UTC
Event contains 432 original clicks, 216 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 143 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.82 |
| Median 10dB Center Frequency [kHz] | 6.67 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.966 (6.28 - 7.28) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.71 ( 4.7 - 8.26) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-28 02:52UTC to 2024-08-28 02:58UTC
Event contains 920 original clicks, 460 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 203 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.52 |
| Median 10dB Center Frequency [kHz] | 7.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (6.68 - 8.27) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.37 (4.81 - 11) |
| Median duration [μs] (25-75 percentile) | 78 (22 - 405) |
Time: 2024-08-28 02:58UTC to 2024-08-28 03:04UTC
Event contains 5142 original clicks, 2571 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1449 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 5.87 |
| Median 10dB Center Frequency [kHz] | 6.39 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 (5.06 - 6.68) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.26 (3.74 - 8.8) |
| Median duration [μs] (25-75 percentile) | 331 (36 - 1000) |
# clean up the event table
evTable <- evTable[evTable$keep == TRUE,]
evTable <- subset(evTable, select = -keep)
# save event table as CSV
write.csv(evTable, file = file.path(params$path_dets,
paste0('eventTable_', params$mission, '_',
params$drift, '_', Sys.Date(),'.csv')))
#dbDisconnect(dbFile)
After additional filtering based on median peak frequency, 264 events events of 1669 original events remain.